* {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    background: linear-gradient(0deg, #D1F2EB, #D2B4DE);
}

.quiz, .scores {
    margin: 100px auto 0 auto;
    max-width: 400px;

}

p {
    margin: 15px 15px;
}

/**/

.interface {
    text-align: center;
    color:#6C3483 ;
    font-size:larger;
}


.timer {
    position: absolute;
    top: 15px;
    right: 15px;
}

button {
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    color:aqua;
    background-color:blueviolet;
    border-radius: 5px;
    border: 0;
    padding: 20px;
    
}

.scoresHeader {
    position: absolute;
    top: 15px;
    left: 15px;
}

button:hover {
    color:blueviolet;
    background-color:aqua;
}

.choices button {
    display: block;
}

input[type="text"] {
    font-size: 100%;
}

.conceal {
    display: none;
}

.response {
    font-style: bold;
    font-size: 120%;
    margin-top: 20px;
    padding-top: 15px;
    color: #fff;
    border-top: 2px solid #4B0082;
}

ol {
    padding-left: 15px;
    max-height: 650px;
    overflow: auto;
}
  
  li {
    padding: 7px;
    list-style: decimal inside none;
}
  
  li:nth-child(odd) {
    background-color: #dfdae7;
}

/* for screens smaller than 768px*/
@media screen and (max-width: 768px) {

}

/* for screens smaller than 575 */
@media screen and  (max-width: 575px) {

}