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

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


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

header img {
    margin: auto;
    display: block;
    width:120px;
    height:120px ;
    border-radius: 100%; 
    margin-top: 20px;
    margin-bottom: 34px;
    background-image: linear-gradient(90deg, #9572FC 0%, #43E7AD 50.52%, #E2D45C 100%);
    padding: 4px;
    flex: none;
    order: 0;
    flex-grow: 0;
  
}

header div {
    transition: transform .3s;
    
}

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



main{
    max-width: 580px;
    width: 90%;
    margin:auto;
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
    
}
section{
    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 ul li { 
    transition: transform .3s;

}

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

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

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

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

.channel-list img {
    border-radius: 100px;
    width: 70px;
}

main section{
    animation: cards .7s backwards;
}

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


@keyframes cards {

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

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

}