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

header {
    padding-top: 32px;
    height: calc(120px + 32px);
    /* Define desde o inicio o tamanho, como se fosse um espaço pre definido*/
}

header div {
    width: 120px;
    margin: auto;
    background-image: linear-gradient(90deg, #2b0404, 0%, #450a0a 50%, #270404 100%);
    /* background-image: linear-gradient(90deg, #9572FC 0%, #43E7AD 50%, #E2D45C 100%); */
    border-radius: 50%;

    display: flex;
    padding: 4px;

    transition: transform .3s;
    animation: fromTop .7s .1s backwards;
}

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

header img {
    width: 100%;
    /* em relação ao pai dela, que seria o div */
    border-radius: 50%;
}

main {
    max-width: 580px;
    width: 90%;
    margin: 32px auto;

    display: grid;
    gap: 24px;
}

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

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

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

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

section ul {
    list-style: none;
    display: flex;
    gap: 16px;

    margin-top: 24px;
    flex-wrap: wrap;
}

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

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

body {
    background-image: linear-gradient( rgba(0,0,0,.75), rgba(0,0,0,.75) ), url(./Assets/wallpaper.jpg);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: black;
}

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

section {
    color: white;
    background-image: linear-gradient(90deg, #330b0b, 0%, #450a0a 50%, #270404 100%);
    /* background-image: linear-gradient(90deg, #9472fc83 0%, #43e7ae7d 50%, rgba(226, 213, 92, 0.468) 100%); */
    border-radius: 10px;
    padding-top: 4px;
}

section div {
    /* background-color: #2a2634; */
    background-color: rgba(26, 25, 30, 0.95);
    padding: 32px;
    padding-top: 24px;
    border-radius: 8px;
}

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

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

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

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

/* Animations */

@keyframes fromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
        /* sempre relativo a posição própria */
    }

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

@keyframes fromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
        /* sempre relativo a posição própria */
    }

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