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

.quiz-container {
    background: white ;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

h1{
    margin-top: 1px;
}

.question {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.option:hover {
    background-color: #4B644A;
    color: #fff;
}

.timer {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f6744c;
}

.result {
    font-size: 1.5em;
    color: #4caf50;
    display: none;
}

.restart-btn {
    background-color: white;
    color: rgb(25, 7, 7);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    display: none;
}

.restart-btn:hover {
    background-color: #4B644A;
    color: white;
}