@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

.bg-container {
    background-color: #875fc0;
    background-size: cover;
    padding: 20px;
}

.score {
    color: #ffffff;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

.question-container {
    background-color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
}

.question-number {
    color: #1f2933;
    font-family: "Roboto";
    font-size: 20px;
    font-weight: 500;
}

.question-text {
    color: #323f4b;
    font-family: "Roboto";
    font-size: 14px;
}

.question-image {
    width: 240px;
}

.options-container {
    background-color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.options-list {
    list-style-type: none;
    padding: 0px;
}

.option {
    color: #323f4b;
    background-color: #ffffff;
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 500;
    border-style: solid;
    border-width: 1px;
    border-color: #323f4b;
    border-radius: 8px;
    padding: 8px;
    margin: 10px;
}

.correct-option {
    color: #ffffff;
    background-color: #875fc0;
}

.button {
    color: white;
    background-color: #fbaf00;
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 500;
    height: 38px;
    width: 98px;
    border-width: 0;
    border-radius: 6px;
}