html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: black;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none; /* Safari */
}

#canvas-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    display: block;
    background-color: #eee; /* Placeholder color */
    image-rendering: -webkit-optimize-contrast; /* For better pixel art scaling */
    image-rendering: crisp-edges;
}
