.quiz-container{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    cursor: url(imgs/cursor.png) 20 20, auto;
}
.option-container{
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left:0;
}
.option-start{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 5em;
    color: aqua;
    font-family: 'Passero One', cursive;
    background-image: linear-gradient(to bottom right, rgb(0, 89, 255), black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.option-start:hover{
    background-image: linear-gradient(to bottom right, rgb(0, 89, 255), aqua);
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    color: white;
}
.option{
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: white;
    border-radius: 10px;
    color: rgb(0, 48, 49);
    font-weight: 900;
    font-size: 1.3em;
    font-family: 'Roboto', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    transform-origin: center;
    transform: scale(0.9);
}
.term-definition{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    border-radius: 5px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 500;
    text-shadow: 0px 0px 50px aqua;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quizCount{
    position: absolute;
    font-size: 1.3em;
    top: 0;
    color: white; 
    font-family: 'Passero One', cursive;
    text-align: center;
    width: 100%;
    text-shadow: 0px 0px 3px aqua;
    display: none;
}
    @media (max-width: 480px) {
        .quizCount{
            top: -10%;
        }
    }
.summary-container{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: 10000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
    font-size: 1.3em;
    font-family: 'Passero One', cursive;
    padding-bottom: 5%;

}
.summary-grade-text{
    font-size: 2em;
    width: 100%;
    text-align: center;
    color: aqua;
    display: flex;
    align-items: center;
    justify-content: center;
}
.summary-grade{
    font-family: 'Passero One', cursive;
    color: rgb(0, 255, 0);
    text-shadow: 0px 0px 15px black;
}
@keyframes expandOption{
    100%{transform: scale(1);}
}
@keyframes popOption{
    0%{transform: scale(0);}
    50%{transform: scale(1);}
    100%{transform: scale(0.9);}
}