/* STYLE SECTIONING TAGS */
body {
  margin: 2em;
  text-align: center;
  background-color: #f9e5b9;
}

/* STYLE TEXT */
#title {
  font-style: italic;
  color: #5a1c02;
  border-bottom-style: double;
  border-bottom-color: #5a1c02;
  padding-bottom: 12px;
  font-family: "sans-serif", Gill Sans;
  font-size: 40px;
  text-shadow: 3px 3px 3px #a5a1a1;
}

#subtext {
  color: #5a1c02;
  font-family: "Times New Roman";
  font-size: 20px;
}

.questions {
  margin-top: 2em; 
  color:#5a1c02;
  font-family: "sans-serif", Gill Sans;
  font-size: 25px;
}

#result {
  font-size: 25px;
  color: #5a1c02;
  margin-top: 1em;
}

/* STYLE FLEX CONTAINER */
.question {
  display: flex;
  /* uncomment the next line to center the questions and answers */
  justify-content: center;
  margin-top: 2em;
}
  
/* STYLE FLEX ITEM */
.answer-choice {
  margin: 5px;
}

/* STYLE IMAGES */
.answer-choice img {
  height: 20em;
  border: 5px solid #5a1c02;
}

/* STYLE BUTTON */
button { 
  margin-top: 15px;
  font-size: 20px;
  color: #5a1c02;
  background-color: #d29783;
  font-family:"times new roman";
  border-color: #d29783;
}

button:hover{
  background-color: #c7765c;
}
button:disabled {
  background-color: #F2D9D0;
}
