* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #F5F7FB;
    font-family: 'Karla';
    text-align: center;
}

/* .main {
    display: flex;
    justify-content: center;
} */

.background {
    position: relative;
    z-index: -1;
    margin: 0;
    width: 100vw;
    height: 100%;
}

.blob1 {
    position: fixed;
    top: 0;
    right: 0;
    /* left: 100%; */
    /* width: 100%;
    height: 100%; */
}

.blob2 {
    position: fixed;
    bottom: 0;
    left: 0;
}

.title {
    font-size: 5vh;
}

.description {
    font-family: 'Inter';
    font-size: 2vh;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 30vh;
    max-width: 50vw;
}

.start:hover {
    background-color: #4d5b9ed9;
}

.start:active {
    transform: translateX(1.5px) translateY(1.5px);
}

.quiz {
    text-align: left;
    margin: 5vh auto;
    padding: 1rem 5rem;
    max-width: 90vw;
    max-height: 90vh;
}

/* .question {
    max-height: 10%;
} */

.ques-title {
    font-size: 1rem;
    font-family: 'Karla';
    margin-bottom: 0.35rem;
    font-weight: 700;
    color: #293264;
}

.options {
    display: flex;
    justify-content: left;
    align-items: center;
}

.option {
    margin: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #4D5B9E;
    border: 1px solid #4D5B9E;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 500;
}

.option:hover {
    background-color: #4D5B9E;
    color: #F5F7FB;
    transition: background-color 0.1s ease-in-out;
}

.option:active {
    background-color:#293264;
    transform: translateX(1.5px) translateY(1.5px);
}

.start, .check-ans {
    font-family: 'Inter';
    margin-top: 24px;
    padding: 1.75vh 8vw;
    font-size: 0.85rem;
    background-color: #4D5B9E;
    color:#F5F7FB;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

.check-ans {
    font-family: 'Karla';
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    padding: 0.75rem 2rem;
    box-shadow: inset 0 0 0 0 #4D5B9E;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

.check-ans:hover, .start:hover {
    box-shadow: inset 400px 0 0 0 #101744;
}

.selected {
    background-color: #D6DBF5;
    border: #D6DBF5 1px solid;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.score {
    position: relative;
    left: 1rem;
}

.play-again {
    position: relative;
    right: -2rem;
}

.correct {
    background-color: #94D7A2;
    border: 1px solid #94D7A2;
}

.incorrect {
    background-color: #F8BCBC;
    border: 1px solid #F8BCBC;
}

@media screen and (min-width: 800px) and (max-width: 1536px) {
    .quiz {
        max-width: 60%;
    }
}

@media screen and (max-width: 500px) {
    .quiz {
        max-width: 90%;
    }
    .ques-title {
        font-size: 0.85rem;
    }
    .option {
        font-size: 0.8rem;
    }
    .options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0;
        margin: 0.1rem;
    }
}