@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono");

body {
    background-color: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: "Roboto Mono", sans-serif;
}

.title {
    display: flex;
    position: relative;
    width: 75%;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}

.title span {
    color: #e3e3e3;
    font-size: 4rem;
    text-transform: uppercase;
    position: relative;
    transform: translateY(-900%);
    transition: fontsize 0.5s;
}

.sprite {
    font-size: 3rem;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.5s;
}


@media screen and (max-width: 768px) {
    .title span {
        font-size: 3rem;
    }

}

.cursor {
    pointer-events: none;
    position: fixed;
    width: 30px;
    height: 2px;
    background-color: white;
    z-index: 1000;
    transition: all 0.1s;
    mix-blend-mode: difference;
    will-change: transform width height;

}
.cursor.initial{
    width: 100vw;
}
/* .cursor.moving {
    background-color: tomato;
} */
.cursor.moving {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    /* mix-blend-mode: normal; */
}

.container {
    display: flex;
    cursor: none; 
    background-image: linear-gradient(360deg, #000000 0%, #191919 40%, #232323 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.glow {
    animation: neon 1.5s infinite alternate;
    padding: 2rem;
    cursor: pointer;
}

@keyframes neon {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px rgb(255, 0, 170), 0 0 70px rgb(255, 0, 170), 0 0 80px rgb(255, 0, 170), 0 0 100px rgb(255, 0, 170), 0 0 150px rgb(255, 0, 170);
    }

    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px rgb(255, 0, 170), 0 0 35px rgb(255, 0, 170), 0 0 40px rgb(255, 0, 170), 0 0 50px rgb(255, 0, 170), 0 0 75px rgb(255, 0, 170);
    }
}

/* .ocean {
    background: #281bbb;
    height: 10%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    overflow-x: clip;
    pointer-events: none;
}

.wave {
    background: url(/assets/wave.svg) repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) 1.5s infinite, swell 7s infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    top: -10px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) 4s infinite, swell 7s infinite;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {

    0%,
    100% {
        transform: translate3d(0, -25px, 0);
    }

    50% {
        transform: translate3d(0, 5px, 0);
    }
} */