
#quiz {
    overflow-x: hidden;
    background-color: #001e38;
    height: 100vh;
    font-family: cursive;
}

#title {
    background-color: rgba(5, 100, 5, 0.47);
}

#quiz-body {
    color: rgb(244, 245, 179);
    background-color: rgba(5, 100, 5, 0.47);
    margin-top: 10%;
    margin-bottom: 10vh;
    border: 5px solid green;
    border-radius: 10px;
    box-shadow: 10px 10px 10px 5px rgba(30, 47, 26, 0.97);
}

#question-container {
    font-size: 1.2rem;
}

label span{
    font-size: 0.9rem;
    color: aliceblue;
}

#feedback {
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

#next-question {
    position: absolute;
    bottom: 1%;
    right: 1%;
}

#feedback-body {
    display: none;
    color: rgb(244, 245, 179);
    background-color: rgba(5, 100, 5, 0.47);
    margin-top: 10%;
    margin-bottom: 10vh;
    border: 5px solid green;
    border-radius: 10px;
    box-shadow: 10px 10px 10px 5px rgba(30, 47, 26, 0.97); 
}