ebody, ehtml {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

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

#controls {
    margin-top: 10px; /* Space between canvas and controls */
    color: white;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    align-items: center;
    gap: 5px;
}
