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

body{
    background: url(./assets/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%;
}

main *{

}

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

section{
    color: white;
    background-image: linear-gradient(90deg, #9572FC, #43E7AD, yellow);
    padding-top: 4px;
    border-radius: 10px;
    margin-top: 32px;
    animation: FromBottom .3s .5s backwards;
}

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

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

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

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

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

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

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

}

section li{
    transition: transform .3s;
}

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

ul{
    list-style: none;
}

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

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

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

header h2{
    color: #A1A1AA;
}

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

header div{
    width: 120px;
    height: 120px;
    margin: auto;
    background-image: linear-gradient(90deg, #9572FC, #43E7AD, yellow);
    border-radius: 50%;
    padding: 4px;
    transition: transform .3s;
    animation: FromTop .3s .2s backwards;
}

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

footer div{
    display: flex;
    justify-content: center;
    color: white;
    font-size: 8pt;
}

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

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

@keyframes FromBottom {
    from{
        opacity: 0;
        transform: translateX(-30px);
    }

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