body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#game-container {
    position: relative;
    /* Subtle glow to indicate the game area */
    box-shadow: 0 0 20px rgba(0, 251, 255, 0.1); 
}

canvas {
    display: block;
    background-color: #000000;
}