/* General styles */
body {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Container for the quiz */
#question-container,
#result {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
#small-text {
  font-size: 0.8em;
}


/* Quiz title */
#question {
  font-size: 2em;
  margin-bottom: 1em;
}

/* Answers */
#answers {
  font-size: 1.2em;
  margin-bottom: 2em;
}

/* Buttons */
button {
  background-color: #444;
  border: none;
  color: #bb0000;
  cursor: pointer;
  font-size: 1em;
  padding: 0.5em 1em;
  text-align: center;
}


/* Percentage display */
#percentage-A,
#percentage-B,
#percentage-C,
#percentage-D,
#percentage-E {
  font-size: 1.5em;
  color: #bb0000;
}

/* Informative text display */
#text-A,
#text-B,
#text-C,
#text-D,
#text-E {
  font-size: 1em;
  margin-bottom: 1em;
}
