/* © 2021 - 2025 Joalor64, All rights reserved. */
/* Made with ❤️ */

@font-face {
    font-family: poppinsregular;
    src: url("../font/Poppins-Regular.woff2") format("woff2"),
        url("../font/Poppins-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: poppinsregular;
    src: url("../font/Poppins-Regular.woff2") format("woff2"),
        url("../font/Poppins-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: poppinsregular, sans-serif;
    text-align: center;
    background-color: #111;
    height: 100%;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html,
body {
    max-width: 101%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

::-webkit-scrollbar-thumb {
    background-color: #3c3c3c;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #3c3c3cae;
}

::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}

hr {
    border: none;
    width: 70%;
    height: 1px;
    background-color: #444;
}

hr .lightmode {
    background: #ccc;
}

a {
    color: inherit;
    text-decoration: none;
}

a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

.lightmode {
    background-color: #fafafa;
    color: black;
}

.theme-toggle {
    bottom: 20px;
    left: 20px;
    position: fixed;
    font-size: 30px;
    cursor: pointer;
}

.back-button {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    background-color: #555;
    top: 20px;
    left: 20px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 30px;
}

.back-button:hover {
    background-color: #777;
}