@font-face {
    font-family: 'GameFont';
    src: url('font.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #222;
    overflow: hidden;
}

canvas {
    display: block;
    height: 90vh;
    width: auto;
    max-width: 95vw;
    max-height: 95vh;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border: 1px solid grey;
}