body {
    background-color: #0c1a2e;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100vh;
}

h1 {
    font-size: 2em;
    color: #7dceff;
    text-shadow: 2px 2px #000;
}

canvas {
    background-color: black;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    cursor: none; /* Hide the mouse cursor over the game */
}

#loadingMessage {
    margin-top: 20px;
    font-size: 1.2em;
    color: #fff;
}