
@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');

body {
    background-color: black;
    color: white;
    font-family: "Koulen", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
    overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    /* transition: .2s ease; */
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    background: transparent;
}

/* ::-webkit-scrollbar-track:hover {
    background: transparent;
} */

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: #888; */
    /* background: rgb(87, 0, 226); */
    background: white;
    border-radius: 50px;
    background-image: radial-gradient(white 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -19px -19px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: rgb(59, 0, 153); */
    background: rgb(90, 90, 90);
}

.LoginBtn {
    position: absolute;
    display: flex;
    top: 2.5vh;
    left: 1.5vw;
    width: 120px;
    height: 50px;
    border: 2px solid white;
    background: rgba(128, 128, 128, 0.217);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
    color: white;
    user-select: none;
    cursor: pointer;
    transition: .4s ease;
}

.LoginBtn:hover {
    background: rgba(128, 128, 128, 0.317);
}

.dots {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0px;
    background: transparent;
    background-image: radial-gradient(transparent 3px, black 0);
    background-size: 75px 75px;
    background-position: 10px 100%;
    z-index: -2;
    animation: dots 15s linear infinite;
}

.dotsGrad {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background: repeating-linear-gradient(to right, purple, magenta, crimson, purple);
    filter: brightness(0.8);
    z-index: -3;
    background-size: 200%;
    animation: moveGradient 5s linear infinite;
}

@keyframes moveGradient {
    from {
        background-position: 0% center;
    }
    to {
        background-position: -200% center;
    }
}

@keyframes dots {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 83%;
    }
}

.dotsG {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    /* background: black; */
    /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 1) 40%); */
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 15%, rgba(30,30,30,0.25) 50%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

h1#ct {
    /* font-size: 205px; */
    font-size: 12em;
    /* max-width: 100%; */
    font-weight: 100;
    margin: 0;
    padding: 0;
    position: absolute;
    width: fit-content;
    height: fit-content;
    transform: translateY(-25%);
    white-space: nowrap;
    overflow: hidden;
    /* transform: translate(-50%, -50%); */
    user-select: none;
    cursor: default;
    /* z-index: -3; */
}

@media (max-width: 1024px) {
    h1#ct {
        font-size: 8em;
    }
}

@media (max-width: 768px) {
    h1#ct {
        font-size: 6em;
    }
}

@media (max-width: 480px) {
    h1#ct {
        font-size: 3.7em;
    }
}
