body {
    background-color: #003366; /* Cobalt Blue */
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 10px;
}

.scrollable-question {
    max-height: 150px; /* Adjust based on your design */
    overflow-y: auto;
    width: 80%; /* Ensures the text doesn't overflow horizontally */
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
}


.question {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.answers {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.answer-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
}

.answer-button:hover {
    background-color: #005bb5;
}

.lifelines {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.lifeline-button {
    background-color: #cc9900;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

.lifeline-button:hover {
    background-color: #b58900;
}

.intro {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.start {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-button {
    background-color: #cc9900;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em;
    border-radius: 5px;
    cursor: pointer;
}

.start-button:hover {
    background-color: #b58900;
}
