@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --box-shadow: rgba(0, 0, 0.24, 0px 3px 8px);
}

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-decoration: none;
    list-style: none;
}

.quiz {
    background-color: #0d479a;
    padding: 30px;
}

.heading {
    margin: 10px auto 40px auto;
}

    .heading .title {
        font-size: 30px;
        color: white;
        font-weight: 500;
        text-align: center;
    }

    .heading .subtitle {
        font-size: 20px;
        color: white;
        font-weight: 300;
        text-align: center;
    }

.result {
    text-align: center;
    min-width: 350px;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 5px;
    background-color: white;
    

}

    .result p:first-child {
        padding: 10px 20px;
    }

.hide {
    display: none;
}

.reload button {
    background-color: #04aa6d;
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 5px 5px;
    width: 100%;
    border: 0;
}

    .reload button:hover {
        background-color: #03a369;
        cursor: pointer;
    }

.quiz-form {
    max-width: 1000px;
    margin: auto;
}

.question {
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 20px 0px;
    box-shadow: var(--box-shadow)
}

    .question > * {
        font-size: 18px;
    }

.option {
    margin-left: 10px;
}

.correct {
    background-color: #c8ffdf;
}

.wrong {
    background-color: #ff1f1f;
}

.submit {
    text-align: center;
    margin: 30px 0;
}

    .submit input {
        background-color: #04aa6d;
        padding: 5px 25px;
        color: white;
        font-size: 22px;
        box-shadow: var(--box-shadow);
        border: none;
        border-radius: 5px;
    }

        .submit input:hover {
            background-color: #03a369;
            cursor: pointer;
        }