body {
    background-color: #2c3e50; /* Dark slate blue */
    color: #ecf0f1; /* Light gray text */
    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: #f1c40f; /* Yellow */
    text-shadow: 2px 2px #2c3e50;
}

canvas {
    background-color: black;
    border: 4px solid #ecf0f1;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}