/* /public/style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Disable scrolling */
    font-family: 'Roboto', sans-serif;
    background-color: #013220; /* Dark Green */
}

#game-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-canvas {
    display: block;
    background-color: #483D8B; /* Purple Game Board */
}

#rotate-prompt {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5em;
    z-index: 100;
}

/* Media query to show prompt in portrait mode */
@media (orientation: portrait) {
    #game-container {
        display: none;
    }

    #rotate-prompt {
        display: flex;
    }
}