body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100dvh;

    background-color: rgb(38, 38, 38);
}

.game-container {
    /* width: min(95vw, calc(100dvh * (3/2))); */
    height: min(100dvh, calc(100vw / (3/2)));
    /* max-width: 95vw; */
    /* max-height: 100dvh; */

    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

#game-canvas {
    width: 100%;
    height: 100%;

    display: block;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
}