@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}



:root {
    --bg-color: #fff;
    --bg-secondary: #f7f7f7;
    --text-color: #000;
    --img-bg: #e4e4e7;
    --text-secondary: gray;
    --text-tertiery: #313131;
    --svg-invert: 0;
    --img-brightness: 1;
    --backdrop: rgba(0,0,0, 0.4);
    --link-color: #0066cc;
    --link-hover-color: #003366;
    --link-visited-color: #551a8b;
}



[data-theme="dark"] {
    --bg-color: #212121;
    --bg-secondary: #313131;
    --text-color: #ebebeb;
    --img-bg: #313131;
    --text-secondary: #a0a0a0;
    --text-tertiery: #cbcbcb;
    --svg-invert: 1;
    --img-brightness: 0.9;
    --backdrop: rgba(0,0,0, 0.9);
    --link-color: #aadfff;
    --link-hover-color: #ffffff;
    --link-visited-color: #88b7ff;
}

@media (prefers-color-scheme: dark) {
    [data-theme="auto"] {
        --bg-color: #212121;
        --bg-secondary: #313131;
        --text-color: #ebebeb;
        --img-bg: #313131;
        --text-secondary: #a0a0a0;
        --text-tertiery: #cbcbcb;
        --svg-invert: 1;
        --img-brightness: 0.9;
        --backdrop: rgba(0,0,0, 0.9);
        --link-color: #aadfff;
        --link-hover-color: #ffffff;
        --link-visited-color: #88b7ff;
    }
}

@media (prefers-color-scheme: light) {
    [data-theme="auto"] {
        --bg-color: #fff;
        --bg-secondary: #f7f7f7;
        --text-color: #000;
        --img-bg: #e4e4e7;
        --text-secondary: gray;
        --text-tertiery: #313131;
        --svg-invert: 0;
        --img-brightness: 1;
        --backdrop: rgba(0,0,0, 0.4);
        --link-color: #0066cc;
        --link-hover-color: #003366;
        --link-visited-color: #551a8b;
    }
}





input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--img-bg);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    border-radius: 4px;
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
