:root {
    --twitch: #6441A4;
    --discord: #5865F2;
    --youtube: #FF0000;
    --twitter: #00ACEE;
    --tiktok-base: #FF0050;
    --tiktok-glow: #00F2EA;
    --spotify: #1ED760;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

section .btns {
    color: #fff;
    z-index: 2;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
    font-size: 35px;
}

section {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

section .row {
    z-index: 1;
    position: relative;
    top: -50%;
    width: 100%;
    display: flex;
    padding: 0 0;
    white-space: nowrap;
    font-size: 64px;
    transform: rotate(-10deg);
    user-select: none;
    cursor: default;
}

i {
    color: rgba(0, 0, 0, 0.5);
    transition: 1s;
    padding: 0 0;
    user-select: none;
    cursor: default;
}

.icon-twitch:hover {
    transition: 0s;
    color: var(--twitch);
    text-shadow: 0 0 120px var(--twitch);
}

.icon-discord:hover {
    transition: 0s;
    color: var(--discord);
    text-shadow: 0 0 120px var(--discord);
}

.icon-youtube:hover {
    transition: 0s;
    color: var(--youtube);
    text-shadow: 0 0 120px var(--youtube);
}

.icon-twitter:hover {
    transition: 0s;
    color: var(--twitter);
    text-shadow: 0 0 120px var(--twitter);
}

.icon-tiktok:hover {
    transition: 0s;
    color: var(--tiktok-base);
    text-shadow: 0 0 120px var(--tiktok-glow);
}

.icon-spotify:hover {
    transition: 0s;
    color: var(--spotify);
    text-shadow: 0 0 120px var(--spotify);
}

section .row div {
    animation: animate1 80s linear infinite;
    animation-delay: -80s;
}

section .row div:nth-child(2) {
    animation: animate2 80s linear infinite;
    animation-delay: -40s;
}

@keyframes animate1 {
    0%
    {
        transform: translateX(100%)
    }
    100%
    {
        transform: translateX(-100%);
    }
}

@keyframes animate2 {
    0%
    {
        transform: translateX(0%)
    }
    100%
    {
        transform: translateX(-200%);
    }
}

section .row:nth-child(even) div {
    animation: animate3 80s linear infinite;
    animation-delay: -80s;
}

section .row:nth-child(even) div:nth-child(2) {
    animation: animate4 80s linear infinite;
    animation-delay: -40s;
}

@keyframes animate3 {
    0%
    {
        transform: translateX(-100%)
    }
    100%
    {
        transform: translateX(100%);
    }
}

@keyframes animate4 {
    0%
    {
        transform: translateX(-200%)
    }
    100%
    {
        transform: translateX(0%);
    }
}