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

body{
    background-image: url(../Imagens/bg.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{
    margin-top: 32px;
    height: calc(120px + 32px);
}
header div{
    width: 160px;
    margin: auto;
    background-image: linear-gradient(90deg, #9572fc 0%, #43e7ad 50.52%, #e2d45c 100%);
     border-radius: 50%;
     display: flex;
     padding: 4px;
     transition: transform .5s;
}

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

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

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

section ul {
    flex-wrap: wrap;
    margin-top: 24px;
    list-style: none;
    display: flex;
    gap: 16px;
}
.games-list a img{
    width: 90px;
    border-radius: 8px;

}

.channel-list img{
    width: 70px;
    border-radius: 50%;
    border: 2px solid #9572fc;
}
section ul li{
    transition: transform .5s;
}

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

section {
    color: rgb(255, 255, 255);
    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: 16px;
    border-radius: 8px;
}

section h2 {
    letter-spacing: -0.47px;
}

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


/* Aimation */

header div{
    animation: fromTop .5s 1.4s backwards;
}

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

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

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

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

@keyframes fromTop {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

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

@keyframes fromBottom{
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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