body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FBCEB1;
}

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.choices .choice {
    display: inline-block;
    margin-top: 20px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.choices .choice:hover {
    background-color: #0056b3;
}

.answer {
    text-align: center;
    font-size: 1.5em;
    color: #007bff;
}
#start-over {
    display: inline-block;
    margin-top: 20px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#start-over:hover {
    background-color: #0056b3;
}
.question {
    padding: 50px;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

#bank-link {
    font-size: 1.2em;
    color: #007bff;
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
}