@import url('https://fonts.googleapis.com/css2?&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,800;1,900&display=swap');


:root {
    --questionAndAnswer-font: 'Montserrat';
    --heading-font: 'Montserrat';
}

/* ---------------------QUIZ STYLE INDIVIDUAL PAGES STARTED------------------- */

body {
    background: rgb(12, 17, 22);
    color: whitesmoke;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.container {
    min-width: 80vw;
    border: 1px solid #353535;
    padding: 0.5rem;
    padding-left: 1rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem;
}

.container h1,
h2 {
    opacity: 0.6;
    font-family: var(--heading-font);
}

.container .questions {
    margin-bottom: 2rem;
    font-family: var(--questionAndAnswer-font);
}

.optionsBlock {
    margin-left: 1.5rem;
    font-family: var(--para-font);
}

.container .answerTag {
    color: green;
}

.answer-box {
    display: none;
    border: 1px solid whitesmoke;
    padding: 1rem;
    border-radius: 5px;
    color: #dffeff;
    font-size: 1.1rem;
}

button {
    cursor: pointer;
    border: 1px solid whitesmoke;
    border-radius: 5px;
    padding: 0.3rem;
    font-size: medium;
    background: whitesmoke;
    color: #4c2c15;
}

.quizFooterTags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.quizFooterTags a {
    text-decoration: none;
    color: whitesmoke;
}

.quizFooterTags p {
    padding: 0.5rem;
    border: 1px solid whitesmoke;
    margin: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.quizFooterTags p:hover {
    transform: scale(1.1);
}

.quizFooterTags .goToHomeTag {
    color: black;
    background-color: whitesmoke;
}

/* ---------------------QUIZ STYLE INDIVIDUAL PAGES ENDED--------------------- */
/* ---------------------FOOTER STYLE FOR EVERY PAGE STARTED------------------- */
footer {
    margin: 2rem 0 1rem 0;
    font-style: var(--heading-para);
    font-weight: 600;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    padding: 5px;
    margin: 0;
}

footer p a {
    text-decoration: none;
    color: whitesmoke;
}

footer p a:hover {
    color: blue;
    font-weight: 400;
}

/* ---------------------FOOTER STYLE FOR EVERY PAGE ENDED--------------------- */
/* --------------------------RESPONSIVENESS STARTED--------------------------- */
@media only screen and (max-width: 400px) {
    h1 {
        font-size: large;
    }

    .container {
        min-width: 88vw;
        padding: 1rem
    }

}

/* --------------------------RESPONSIVENESS ENDED----------------------------- */