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

#audio-container {
    position: absolute;
    top: 20px; /* Adjust the top position as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Set a higher z-index for the audio container */
    margin-bottom: 20px;
}

.option-container {
    text-align: center; /* Center the content within the container */
}
.container {
    text-align: center; /* Center the content */
    margin-top: 50px; /* Adjust the margin as needed */
}

#game-container {
    padding: 20px;
    text-align: center; /* Center the content */
    flex-wrap: wrap;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

#options {
    display: flexbox;
    flex-wrap: wrap;
    flex-direction: row; /* Display options side by side */
    gap: 20px;
    align-items: center; /* Center options vertically */
    justify-content: center; /* Center options horizontally */
    margin-top: 20px;
    margin-bottom: 20px;

}

.btn-option {
    position: relative;
    width: 350px; /* Adjust the width as needed */
    height: 350px; /* Adjust the height as needed */
    overflow: hidden;
    background-color: #ddd;
    border: none;
    cursor: pointer;
}

.btn-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#buttons-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center buttons horizontally */
    margin-top: 30px; /* Adjust the margin */
}

button {
    margin: 5px 0; /* Add some space between the buttons */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}

#prev-button {
    margin-right: 10px;
}

.prompt {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Center text within the container */
}

#prompt-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#prompt-next {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
}

#prompt-next:hover {
    background-color: #45a049;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgb(95, 126, 9); /* Change the background color as needed */
    color: #fff; /* Change the text color as needed */
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.back-button:hover {
    background-color: rgba(0, 179, 30, 0.986); /* Change the background color on hover as needed */
}

.back-button a {
    color: #f3f3f3;
    text-decoration: none;
}

.back-button a:hover {
    text-decoration: underline;
}

#total-score-button {
    display: none;
    margin-top: 10px; /* Add margin to separate it from other elements */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
}

#total-score-button:hover {
    background-color: #45a049;
}

#prompt-close {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
}

#prompt-close:hover {
    background-color: #45a049;
}

/* Add this to your existing CSS or in a new style tag in the head */
