* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
}
body {
    padding: 32px;
    font-family: sans-serif;
}
#games {
    text-align: center;
}
#games li {
    margin-bottom: 48px;
}
#games li:last-child {
    margin: 0;
}
#games img.icon {
    width: 64px;
    height: 64px;
    border-radius: 100%;
}
#games h2 {
    margin-top: 16px;
    font-size: 24px;
}
#games p {
    margin-top: 16px;
    font-size: 16px;
    color: #525252;
}
#games footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
#games footer img {
    height: 44px;
}