@font-face {
    font-family: 'Pretendard';
    src: url("/public/PretendardVariable.ttf") format("truetype");
}

* {
    font-family: Pretendard;
    overflow: hidden;
    user-select: none;
    touch-action: none;
}

html,
body {
    margin: 0;
    background-color: #111;

    width: 100vw;
    height: 100vh;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

body {
    background: linear-gradient(-57.714298deg, #090909, #101010, #111111, #1a1a1a);
    background-size: 400% 400%;
    animation: gradientShift 11.7s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hidden {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

*::selection {
    background-color: #fff;
    color: #000;
}