* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

.quiz-landing-page {
    padding: 5%;

    margin: auto;
    outline: none;
    border: 2px solid rgb(243, 232, 232);
    border-radius: 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.main-container {
    padding: 15px;
    max-width: 95vw;
    min-height:70vh;
    margin: 1% auto 0;
    outline: none;
    border: 2px solid rgb(243, 232, 232);
    border-radius: 15px;
    text-align: center;

}

.quiz-landing-page a {
    display: block;
    margin: 25px auto 0px;
    min-width: 50%;
    text-align: center;
    font-weight: 900;
    padding: 15px 10px;
    text-decoration: none;
    background-color: white;
    color: teal;
    border: 1px solid teal;
}

.quiz-landing-page a:hover {
    background-color: teal;
    color: white;
    border: 1px solid teal;
}

.score-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2.5%;
}

.score-container div {
    margin: 0px 2.5%;
    padding: 2.5%;
    text-align: left;
    font-weight: bolder;
    background-color: white;
    color: teal;
}

.question {
    width: 90%;
    text-align: left;
    padding: 10px;
    margin: 15px auto;
    background-color: teal;
    color: white;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 150%;
}

.options div {
    display: inline-block;
    width: 90%;
    margin: 5px;
    padding: 5px;
    background-color: white;
    color: teal;
    font-weight: 450;
    text-align: left;
    letter-spacing: 2px;
    line-height: 150%;
    outline: none;
    border: 2px solid teal;
}

.options .correct {
    background-color: green;
    color: white;
    font-weight: bolder;
    border: 2px solid green;
}

.options .wrong {
    background-color: red;
    color: white;
    font-weight: bolder;
    border: 2px solid red;
}

.disabled {
    pointer-events: none;
}

.quizover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0px 10%;
}

.show {
    display: flex;
}

.quizover .container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.quizover .container button, button {
    padding: 15px 50px;
    border: 2px solid teal;
    outline: none;
    background-color: white;
    margin: 15px 0px 20px;
    border-radius: 10px;
    font-weight: bolder;
    color: teal;
    font-size: 16px;
}

.quizover .container button:hover, button:hover {
    background-color: teal;
    color: white;
    font-weight: bolder;
}

.ads {
  align-content: center;
  text-align: center;
  padding: 10px;
  margin: 15px auto;
}

@media screen and (max-width: 720px) {
    .quiz-landing-page {
        min-width: 100vw;
    }

}
