body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 2;
    background-color: lightpink;
  font-family: 'Courier New', monospace;
}



.game-container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border-radius: 12px;
    border: 4px #ff5e84;
    box-shadow: 0 10px 8px #ff5e84;
}

#gameCanvas {
    border: 5px solid pink;
    background-color: #fff1cc;
    display: block; /* Removes any extra space below the canvas */
    margin: 10px auto;
    box-shadow: 0 0 6px rgb(255, 107, 142);
}

.info-panel {
    margin: 10px 0;
    font-size: 1.1em;
}

#score {
    font-weight: bold;
    color: green;
}

/* Styling for the Game Over screen */
#game-over-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(252, 255, 255);
    padding: 30px;
    border-radius: 10px;
    border: 3px solid red;
    box-shadow: 0 0 20px rgb(255, 107, 142);
    z-index: 10;
}

.hidden {
    display: none;
}

#game-over-message button {
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}