body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000; /* Solid black background for the page */
    font-family: monospace;
}

#game-container {
    background-color: #000; /* Black background for the game area */
    border: 2px solid white; /* Optional border around the game */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Optional glow effect */
    display: block; /* Ensure canvas fits nicely */
}

canvas {
    display: block; /* Remove extra space below canvas */
    background-color: #000; /* Ensure canvas itself is black */
}

