body {
    margin: 0px;
    border: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide overflow to avoid scrollbars */
    background-color: #000; /* Set a background color for the game */
}

#game-canvas {
    width: 100vw;
    height: 100vh;
    border: 0px;
    padding: 0px;
    margin: 0px;
    border-color: black;
    image-rendering: pixelated; /* Keeps the scaled graphics sharp */
}

#hud {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    color: white;
    align-items: center;
}

#hud p {
    margin: 5px 0;
}
