@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

body {
    --font-color: rgb(255, 255, 255);
    --main-color: rgb(24, 24, 24);
    background-color: var(--main-color);
    font-size: 12rem;
    font-family: 'Poppins';
    margin: 0;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

section {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    filter: blur(10px);
    display: flex;
    flex-direction: column;
}

section .bg-text {
    position: relative;
    width: 100%;
    top: -80%;
    left: -20%;
    display: flex;
    white-space: nowrap;
    font-size: 7rem;
    padding: 10px 0;
    transform: rotate(-30deg);
}

section .bg-text div{
    animation: animate1 180s linear infinite;
    animation-delay: -180s;
}

section .bg-text div:nth-child(2) {
    animation: animate2 180s linear infinite;
    animation-delay: -90s;
}

@keyframes animate1 {
    0% {
        transform:  translateX(100%);
    }
    100% {
        transform:  translateX(-100%);
    }
}

@keyframes animate2 {
    0% {
        transform:  translateX(0%);
    }
    100% {
        transform:  translateX(-200%);
    }
}

section .bg-text:nth-child(even) div{
    animation: animate3 180s linear infinite;
    animation-delay: -180s;
}

section .bg-text:nth-child(even) div:nth-child(2) {
    animation: animate4 180s linear infinite;
    animation-delay: -90s;
}

@keyframes animate3 {
    0% {
        transform:  translateX(-100%);
    }
    100% {
        transform:  translateX(100%);
    }
}

@keyframes animate4 {
    0% {
        transform:  translateX(-200%);
    }
    100% {
        transform:  translateX(0%);
    }
}

span {
    color: rgb(0, 110, 255);
    text-shadow: 0px 0px 60px rgb(0, 106, 255);
}

span:nth-child(even) {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-shadow: none;
}

.container {
    display: flex;
    justify-content: center;
    gap: 1em;
    position: relative;
    height: 100vh;
}

.text-content {
    margin: 0px;
    align-self: center;
    width: fit-content;
    line-height: .8;
    display: flex;
    flex-direction: column;
}

.text-content a{
    transition: 0.4s;
    color: var(--font-color);
    text-decoration: none;
    -webkit-text-stroke: thin;
}

.buttons-content {
    margin: 0px;
    align-self: center;
    width: 30rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.buttons-content button {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(255, 255, 255);
    border: 2px solid #ffffff;
    width: 100%;
    height: 6rem;
    transition: 0.4s;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 1rem;
}

.buttons-content button:hover {
    opacity: 0.4;
}

@media screen and (max-width: 1500px) {
    .container {
        display: flex;
        flex-direction: column;
        font-size: 20vw;
    }
    .buttons-content {
        width: 70%;
        gap: 1rem;
    }
    .buttons-content button {
        width: auto;
        height: 4.5rem;
    }
}