/* STYLE SECTIONING TAGS */
body {
    font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
    margin: 2em;
    align-items: center;
    text-align: center;
  
  }
  
  /* STYLE TEXT */
  h1 {
    font-style: italic;
    color: #343864;
  }
  
  h2 {
    margin-top: 2em; 
  }
  
  /* 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: 10em;
  }
  
  /* STYLE BUTTON */
  button { 
    margin-top: 5px;
  }