/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #71413b;
  font-family: "Courier New", monospace;
  /* Properties of the main body of the site. Specific expressions will override these. */
}

h1 {
  background-color: #73172d;
  color: #f9a31b;
  text-align: center;
  /* Properties of the main site header. */
}

p {
  color: #f9a31b;
  text-align: center;
  /* Properties of text paragraphs. */
}

img {
  display: block;
  margin: auto; 
}

.flex {
  display: flex; 
  /* necessary to use the flex class. */
}