body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #222;
    color: #eee;
    font-family: sans-serif;
    touch-action: none; /* Prevent default touch actions like scrolling */
    overflow: hidden; /* Prevent scrolling */
}

h1 {
    margin-bottom: 0.5em;
}

p {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: 0.9em;
    color: #bbb;
}

#game-container {
    position: relative;
    border: 1px solid #555;
    width: 90vw;
    height: 70vh;
    max-width: 800px;
    max-height: 600px;
    overflow: hidden; /* Keep game elements inside the container */
}

canvas {
    display: block;
    background-color: #000;
    width: 100%;
    height: 100%;
}

#restart-button {
    padding: 10px 20px;
    cursor: pointer;
}

