body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #f0f0f0;
    color: #ffffff;
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.container {
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.logo {
    max-width: 200px; /* Increased the logo size */
    margin-bottom: 20px;
}

#phrase-container {
    font-size: 1.5em; /* Increase the font size for the question */
    margin-bottom: 20px;
}

#phrase {
    background: #34495e;
    padding: 10px;
    border-radius: 10px;
    line-height: 1.6; /* Add line height for better readability */
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    padding: 15px;
    font-size: 1.2em; /* Increase the font size for the choices */
    cursor: pointer;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    color: #000; /* Ensure the text color is dark */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
