body {
    background-color: white;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    text-align: center;
}

.hud {
    width: 300px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: bold;
}

canvas {
    border: 2px solid black;
    background-color: white;
}