/* styles.css */

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

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 600px;
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
}

#timer,
#score {
    font-size: 18px;
    margin: 10px 0;
}

#question {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

#answers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.answer-btn {
    width: 400px;
    border-radius: 20px;
    border: 1px solid black;
    text-align: left;
}

#quiz-container {
    display: block !important;
}

.answer-checked {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 20px;
}

.correct {
    border: 2px solid green;
    color: green;
}

.incorrect {
    border: 2px solid red;
    color: red;
}

.icon {
    font-size: 1.2em;
    margin-left: 10px;
}