body {
    background-color: #000000;
    display: grid;
    place-items: center;
    height: 100vh;
}

.horizontal-scroll {
    white-space: nowrap;
    overflow-x: auto;
    width: 100%;
    background-color: #f0f0f0;
}

.gamelist {
    background-color: #2e2d2d;
    border-radius: 20px;
    padding: 20px;
    color: white;
    width: auto;
    text-align: center;
    margin-bottom: 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.game {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    margin: 20px;
    white-space: nowrap;
}

.game:hover {
    text-decoration: underline;
}

.game-name {
    font-size: 20px;
    margin-bottom: 10px;
}

.game-image {
    width: 100px;
    height: 100px;
    background-color: #9616a7;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
