* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(images/Fundo.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    background-color: #121214;
    font-family: 'Inter', sans-serif;
    line-height: 160%;
}

ul {
    list-style: none;
    margin-top: 24px;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    margin-top: 25px;
    height: calc(120px + 25px);
}

header img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

header div {
    display: flex;

    width: 120px;
    height: 120px;
    background-image: linear-gradient(to right, #9572FC, #43E7AD, #A0E25C);
    border-radius: 50%;
    margin-top: 32px;
    padding: 4px;

    animation: fromtop .3s .3s backwards;
    transition: transform .3s;
}

header div:hover {
    transform: scale(1.1);
}

main {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin: auto;
    max-width: 580px;
    width: 90%;
    margin-top: 32px;
}

section {
    color: white;
    background-image: linear-gradient(to right, #9572FC, #43E7AD, #A0E25C);
    padding-top: 4px;
    border-radius: 10px;
}

section div {
    background-color: #2A2634;
    padding: 24px 32px 32px 32px;
    border-radius: 8px;
}

section h2 {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.47px;
}

section p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.18px;
    color: #A1A1AA;
}

ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

li {
    transition: transform .3s;
}

li:hover {
    transform: scale(1.3);
}

.games-list img {
    border-radius: 8px;
    width: 90px;
}

.streamers-list img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #443E54;
}

.social-list img {
    width: 60px;
    height: 60px;
}

footer {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #9572FC, #43E7AD, #A0E25C);
    margin-top: 24px;
}

main section {
    animation: imgdown .5s backwards;
}

main section:nth-child(1) {
    animation-delay: 0;
}

main section:nth-child(2) {
    animation-delay: .4s;
}

main section:nth-child(3) {
    animation-delay: .8s;
}


@keyframes fromtop {
    from {
        transform: translateY(-30px);
        opacity: 0%;
    }

    to {
        transform: translateY(0);
        opacity: 100%;
    }
}

@keyframes imgdown {
    from {
        transform: translateY(30px);
        opacity: 0%;
    }

    to {
        transform: translateY(0);
        opacity: 100%;
    }

}