@font-face {
    font-family: Kanit;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/Media/kanit700.woff2") format("woff2");
    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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    --mouse-position-x: 20dvw;
    --mouse-position-y: 50dvh;
    position: fixed;
}

body {
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    margin: 0;
    background: linear-gradient(to top, #292f37 0%, #4b5057 100%);
}

.rotational-background {
    background: radial-gradient(circle at 50dvw 50dvh, #aaa 0px, #666 100%);
}

::-webkit-scrollbar {
    background-color: #222;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.5rem;
}

::-webkit-scrollbar-track {
    box-shadow: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

@keyframes animated-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.full-text-shadow {
    text-shadow:
    0.05em  0.05em 0.05em #202020,
    0.05em -0.05em 0.05em #202020,
    -0.05em  0.05em 0.05em #202020,
    -0.05em -0.05em 0.05em #202020;
}