#games-container {
    width: 100%;
    overflow-y: scroll;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: auto;
}

.game-button {
    width: 100%;
    aspect-ratio: 1/1;
    border: solid 2px white;
    background-color: var(--color-background);
    border-radius: 8px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.game-leave {
    display: none;
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    border: solid 2px white;
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 8px 16px;
}

.game-leave.show {
    display: block;
}

#game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}