/* STYLE SECTIONING TAGS */
body {
  font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  margin: 2em;
  text-align: center;
}
body {
  background-color: #feecec;
}
/* STYLE TEXT */
h1 {
  font-style: italic;
  color: #b43028;
  font-size: 60px;
  text-align: center;
}

h2 {
  margin-top: 2em;
  text-align: center;
}

h3 {
  text-align: center;
  margin-top: 2em;
}

h4 {
  text-align: center;
  font-size: 40px;
  color: #b43028;
}
h5 {
  text-align: center;
  color: #b43028;
}
ul {
list-style-type: none; /* Removes bullet points */
text-align: center;
}

/* STYLE FLEX CONTAINER */
.question {
  display: grid;
  /* Two columns */
  grid-template-columns: repeat(2, auto); 
  gap: 10px;
  justify-content: center;
  margin-top: 2em;
  align-items: center;
}
  
/* STYLE FLEX ITEM */
.answer-choice {
  margin: 5px;
}

/* STYLE IMAGES */
.answer-choice img {
  height: 10em;
  width: 15em; 
  text-align: left;
}
.homeimg {
  width: 1200px;
  height: auto; 
}
.resultimg {
  width: auto;
  height: 30em;
}
/* STYLE BUTTON */
button { 
  margin-top: 5px;
}