body {
    background-color: navajowhite
}

.first-f {
    height: 60vh;
    width: auto;
    display: grid;
    place-items: center;
}

.section h1 {
    font-size: 100px;
}

.first-s {
    height: 40vh;
    width: auto;
    display: grid;
    place-items: center;
}

.first-s p {
    background-color: tomato;
    padding: 5px 45px;
    border: 1px solid whitesmoke;
    border-radius: 50%;
    font-size: 80px;
}

#quiz-box {
    border: 1px solid whitesmoke;
    height: 85vh;
    width: 85vw;
    background-color: whitesmoke;
    border-radius: 30px;
    box-shadow: rgba(82, 76, 76, 0.4) 4px 4px 20px;
}

.container-quiz {
    display: grid;
    place-items: center;
}

#quizData{
    display: flex;
    flex-wrap: wrap;
    height: 98%;
    padding: 10px;
}
.card-text{
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .section h1 {
        font-size: 40px;
    }
    .first-f {
        height: 50vh;
    }
    .first-s {
        height: 50vh;
    }
    #quiz-box {
        border: 1px solid whitesmoke;
        /* height: 95vh; */
        min-height: 95vh;
        height: fit-content;
        width: 95vw;
        background-color: whitesmoke;
        border-radius: 30px;
        box-shadow: rgba(82, 76, 76, 0.4) 4px 4px 20px;
    }
    #quizData{
        display:block;
        height:fit-content;
    }
    .first-s p {
        font-size: 50px;
    }
    .card-text{
        font-size: 16px;
    }
  }
    
