@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    min-height: 100vh;
    background-image: linear-gradient(45deg, #000000, rgb(95, 47, 4));
}
canvas {
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 920px;
}
.sprite {
    display: none;
}