
/*B"H*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars */
    background-color: #87CEEB;
    font-family: 'Times New Roman', Times, serif;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#startMenu, #gameOverMenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex; /* startMenu is flex, gameOverMenu is none */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#gameOverMenu {
    display: none;
}

#startMenu h1, #gameOverMenu h1 {
    font-size: 2.5em;
}

#gameOverMenu h1 {
    font-size: 4em;
}

button {
    padding: 15px 30px;
    font-size: 1.5em;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: #FFD700;
    color: #333;
    font-weight: bold;
}

button:hover {
    background-color: #FFA500;
}

#powerupExplanation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    display: none;
    text-align: center;
}