/* style.css */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevent scrollbars */
}

#gameCanvas {
    width: 800px;
    height: 600px;
    background-color: black;
    display: block; /* Remove any inline-block spacing */
    margin: auto; /* Center the canvas */
}

.hidden {
    display: none;
}

#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f0f0f0;
}