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

body {
    background-color: #07090c;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    max-height: 100vh;
    height: 100%;
}

.game-wrapper {
    position: absolute;
    /* left: 0; */
    /* right: 0; */
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* aspect-ratio: 0.5625; */

/* .game-wrapper {
    height: 99.6vh;
} */

.game-wrapper canvas {
    width: auto !important;
    height: 100% !important;
}

@media screen and (max-aspect-ratio: 9/16) {
    .game-wrapper canvas {
        width: 100vw !important;
        height: auto !important;
    }

    .game-wrapper {
        /* left: 0; */
        /* right: 0; */
    }
}