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

ul{
    list-style: none;
}

body{
    background-image: url(./assets/fundo.png);
    background-position: center;
    background-size: 99.9% auto;
    background-repeat:no-repeat ;
    background-color: #030303;
}
body *{
    font-family: 'inter', 'sans-serif';
    line-height: 160%;
}

/* 
main *{
    border: 1px solid red;
}
 */

header{
    text-align: center;
    padding-top:32px ;
    height: calc(120px + 32px);
}

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

 header div img{
    width: 100%;
    border-radius: 50%;
    display: flex;
    padding: 4px;
 }

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


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

    
}

section{
    color: aliceblue;
    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 {
    
    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 .3s;
}

section ul li:hover{
    transform: scale(1.1); 

}


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

}

.channel-list img{

    border-radius: 50%;
    width: 70px;

}


/* animação */

header div{
    animation: fromtop .7s .2s backwards /* backwards -> puxa a propriedade para o header div , quanod iniciar , já vai iniciar com a from e finaliza */
}

@keyframes fromtop {

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

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

}

/* animação  de subir os cards de baixo para cima */

main section{
    animation: fromBottom .7s 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 fromBottom{
    from{
        opacity: 0;
        transform: translateY(30px)
    }

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