body {
    height: 100vh;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.game-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    @media (orientation:portrait) {
        flex-direction: row;
    }
    justify-content: center;
    align-items: center;
    object-fit: contain;
}
