/* Container and Card Styling */
body {
    background-color: #333333;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 800px;
}

h1 {
    text-align: center;
    font-family: "Lucida Handwriting", "Brush Script MT", cursive;
    color: #002366;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-family: inherit;
}

.question {
    margin-bottom: 20px;
}

.answers label {
    display: block;
    padding: 5px;
    border-radius: 5px;
    margin: 2px 0;
}

.answers input[type="radio"] {
    margin-right: 10px;
}

/* Button Styling */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #002366;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0044cc;
}

/* Correct and Incorrect Answers */
.correct {
    background-color: #d4edda !important;
    border: 1px solid #c3e6cb;
}

.incorrect {
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb;
}
