body {
    background-color: lightgrey;
}

.score-bar {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;    
}

.quiz-container {
    margin: auto;
    width: 100%;
    text-align: center;
    
}

#answers, 
#question-container,
#result,
#score-page,
#high-scores {
    display: none;    
}

.score-bar {
    background-color: gray;
    color: red;
    font-size: 24px;
    padding: 20px;
}

.timer {
    background-color: white;
    text-align: center;
    width: 12%;
    padding: 5px;
}

#view-scores,
#startBtn,
#restart,
#submit-score {
    background-color: rgb(0, 132, 255);
    color: white;
    font-size: 24px;
    border-radius: 8px;
    transition-duration: 0.4s;    
}

#view-scores:hover,
#startBtn:hover,
#restart:hover,
#submit-score {
    background-color: rgb(150, 132, 255);
}

.questionbox {
    margin: auto;
    width: 50%;
}


.ansBtn {
    background-color: turquoise;
    color: white;
    font-size: 30px;
    width: 100%;
    transition-duration: 0.4s;
}

.ansBtn:hover {
    background-color: blue;
}

ul {
    list-style-type: none;
}

ol {
    margin: auto;
    width: 10%;
    padding: 10px;
}

ol li {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 24px;
}

h1, h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}