/* In styles.css */
.heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24 px;
  font-weight: bold;
}
.quizBody {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24 px;
  font-weight: normal;
  color: #000000;
}
.multiplechoices {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22 px;
  font-weight: normal;
  color: #000000;
}
.quizAnswer {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24 px;
  font-weight: bold;
  color: #FFFFFF;
}
.infoTextBody {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24 px;
  font-weight: normal;
  color: #000000;
}
/*Style notes:
quizBody is the main question style. 
multiplechoices applies to the list of multiple choice answers.
quizAnswer is the style applied to the correct answer text when it is revealed.
infoTextBody applies to the followup text, if any, after a question is completed.
*/