/* Thin Weight */
@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Regular Weight */
@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium Weight */
@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Bold Weight */
@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg-main: #ffffff;
    --text-main: #020202;
    --accent: #007bff;
    --bg-reverse-main: #121212;
    --text-reverse-main: #e0e0e0;
}

/* 2. Automatically switch variables for Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-main: #121212;
        --text-main: #e0e0e0;
        --accent: #3793ff;
        --bg-reverse-main: #ffffff;
        --text-reverse-main: #020202;
    }
}

/* 3. Apply variables to the body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    overflow: hidden !important;
    margin: 0;
}