*{
     box-sizing: border-box;
}

body{
     background-color: #fff;
     background-image: linear-gradient(315deg, #b8c6db, #f5f7fa 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: monospace;
     margin: 0;
     min-height: 100vh;
}

.quiz-container{
     background-color: #fff;
     border-radius: 10px;
     box-shadow: 0 0 10px 5px rgba(100, 100, 100, 0.1);
     width: 600px;
     max-width: 100%;
     overflow: hidden;
     position: relative;
     display: none;
}

.quiz-header{
     padding: 4rem;
}

.quiz-header #quizNumber{
     position: absolute;
     top: 0;
     right: 0;
     font-weight: bolder;
     font-size: 1.5rem;
     padding: 1.2rem;
}

h2{
     margin: 0;
     text-align: center;
}

ul{
     list-style-type: none;
     padding: 0;
}

ul li{
     font-size: 1.2rem;
     margin: 1rem 0;
}

ul li label, input{
     cursor: pointer;
}

button{
     background-color: #8e44ad;
     display: block;
     color: #fff;
     cursor: pointer;
     border: none;
     font-family: inherit;
     font-size: 1.5rem;
     min-width: 100%;
     padding: 1.3rem;
}

button:hover{
     background-color: #732d91;
}

/* RESULTS SECTION */

.score-container{
     max-width: 400px;
     background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
     height: 600px;
     text-align: center;
     border-radius: 2rem;
     padding: 2rem;
     display: flex;
     justify-content: space-between;
     flex-direction: column;
     align-items: center;
     display: none;
     
}

.score-container h3, p{
     color: #fff;
     font-size: 2rem;
     font-weight: bolder;
}

.total-score{
     width:200px;
     height: 200px !important;
     display: flex;
     justify-content: space-between;
     flex-direction: column;
     background: linear-gradient(to bottom, hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
     border-radius: 100%;
}

.total-score .actual-score{
     color: #fff;
     font-size: 8rem;
     font-weight: bolder;
}

.total-score .out-of{
     color: #fff;
     font-size: 1.5rem;
     font-weight: bolder;
     margin-bottom: 3rem;
}