body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    align-items: flex-start;
    border: 2px solid #333;
    padding: 10px;
    background-color: #fff;
}

#game-container {
    position: relative;
    display: flex;
    max-height: 90vh;
}

#game {
    border: 2px solid #000;
    background-color: #f0f0f0;
    height: 80vh;
    max-height: 100%;
    aspect-ratio: 10 / 20;
}

#game-over-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#start-button, #initial-start-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#next {
    border: 1px solid #000;
    background-color: #f8f8f8;
}

.info {
    margin-left: 20px;
    text-align: left;
}

#controls {
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px;
}

#controls h3 {
    margin-top: 0;
}
