/* JavaScript Quiz css file */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  background-color: cornsilk;
}

body {
  /* display: flex; */
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.titleSection {
  background-color: cornsilk;
}

.quizSection {
  display: flex;
  justify-content: center;
}

#quizQuestions,
.buttonBox,
.scoresList,
.scoresList li {
  background-color: lightblue;
}

#quizQuestions {
  margin: 25px 0px;
}
.quizBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 10px solid cornflowerblue;
  background-color: lightblue;
  width: 50%;
  min-height: 200px;
}

button {
  background-color: cornflowerblue;
  color: white;
}

.buttonBox {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.answerButton {
  background-color: cornflowerblue;
  display: block;
}

.scoresList {
  list-style: none;
  margin: 15;
  padding: 15;
}

/* .scoresList li {
  list
} */
