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

ul{
    list-style: none;
}

body{
    background-image: url(./assets/Fundo.jpg);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #121214;
}

body *{
    font-family: 'Inter',sans-serif;
    line-height: 160%;
}

header{
    height: 120px;
    margin-top: 32px;
    /*text-align: center;*/
}

header div{
    width: 120px;
    margin: auto;
    background-image: linear-gradient(90deg, #9572FC 0%, #43E7AD 50.52%, #E2D45C 100%);
    border-radius: 50%;
    display: flex;
    padding: 4px;
    transition: transform .4s;
    animation: fromtop .5s .0s backwards;
}

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

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

main{
    max-width: 580px;
    width: 90%;
    display: grid;
    gap: 24px;
    margin: 32px auto;
}


section{
    margin-top: 32px;
    color: white ;
    background-image: linear-gradient(90deg, #9572FC 0%, #43E7AD 50.52%, #E2D45C 100%);
    padding-top: 4px;
    border-radius: 10px;
    

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

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

section p{    
    letter-spacing: -0.18px;
    color: #A1A1AA;
}

section ul{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

section ul li{
    transition: transform .4s;
}

section ul li:hover{
    transform: scale(1.2);
}

.games-list img{
    width: 90px;
    border-radius: 8px;
}
.channel-list img{
    width: 70px;
    border: 1px solid #443E54;
    border-radius: 50%;

}
.social-list img{
    width: 33px;    
}

/* Animação*/

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

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

    to{
        opacity: 1;
        transform: translateY(0);
    }
}