body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Add space between flex items */
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: block;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
}

@font-face {
    font-family: 'Impact';
    src: url('impact.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.special-edition {
    font-size: 24px;
    color: #035f46;
    font-family: Impact, sans-serif;
    font-weight: normal;
    position: relative;
    text-align: center;
    display: inline-block;
}

.special-edition::before, .special-edition::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #183871, #035f46);
}

.special-edition::before {
    top: -10px; /* Adjust the position above the text */
}

.special-edition::after {
    bottom: -10px; /* Adjust the position below the text */
    left: 0; 
}

.logo {
    width: 225px;
    height: 225px;
    margin-left: 10px;
    margin-right: 10px;
}

.start-button {
    background-color: #035f46;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.start-button:hover {
    background-color: rgb(27, 114, 60);
}

.quiz-container {
    margin-top: 10px;
}

.timer {
    font-size: 44px;
    margin-bottom: 0px;
    font-family: 'Impact', 'Arial', sans-serif;
}

#questionContainer {
    /* width: 100%; 
    height: 320px; fixed height */
    padding: 10px;   
}

.nav-button {
    background-color: #035f46;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}

.nav-button:hover {
    background-color: rgb(27, 114, 60);
}

.answer-option {
    display: block;
    background-color: #e0e0e0;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.answer-option.selected {
    background-color: #035f46;
    color: white;
}

.correct, .incorrect {
    padding: 10px;
    margin: 5px 0;
    font-size: 14px;
    color: white;
}

.correct {
    background-color: #035f46;
}
.incorrect {
    background-color: rgb(109, 47, 47);
}

.correct p, .incorrect p {
    margin: 3px 0;
    padding: 0;
}