@font-face {
    font-family: 'SuperMario';
    src: url('../fonts/SuperMario256.ttf');
}

#game {
    width: calc(100% - 4rem);
    margin-left: 2rem; margin-top: 4rem;
    image-rendering: pixelated;
    user-select: none;
    -webkit-user-select: none;
    background-color: black;
}

@media screen and (max-width: 768px) {
    #game {
        width: 100dvw;
        margin: 0; margin-top: calc(50dvh - 50dvw);
    }
}