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

body {
    align-items: center;
    display: flex;
    flex-direction: column;

    background-image: url(./assets/Background.png);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #121214;

    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    line-height: 160%;
}

#profileImageBorder {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-image: linear-gradient(to right, #9572FC, #43E7AD, #E2D45C);
}

#profileImageBorder,
li {
    transition: 0.2s;
}

#profileImageBorder:hover,
li:hover {
    transform: scale(1.1);
}

header img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

header {
    margin-block: 2rem;
}

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

main h2 {
    font-weight: 900;
    color: white;
    letter-spacing: -0.47px;
}

main p {
    color: #A1A1AA;
    letter-spacing: -0.18px;
}

section {
    margin-bottom: 1.5rem;
}

.topBorderBox {
    background-image: linear-gradient(to right, #9572FC, #43E7AD, #E2D45C);
    padding-top: 4px;
    height: fit-content;
    border-radius: 12px;
}

.card {
    padding: 32px;
    padding-top: 24px;
    border-radius: 8px;
    background-color: #2A2634;
}

ul {
    list-style: none;
    margin-top: 24px;
    display: flex;
    gap: 1rem;
}

.gameCards img {
    width: 90px;
    height: 120px;
    border-radius: 8px;
}

.streamerList img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* Animation */

header div {
    animation: fromTop 1s 0.3s backwards;
}

main section {
    animation: fromBottom 1s 0.3s both;
}

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

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

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

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

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

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

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