body {
  background-color: white;
  color: black;
}

h1 {
  color: red;
  font-family: Arial, sans-serif;
  font-size: 2em;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

h2 {
  color: black;
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: center;
}

h3 {
  color: black;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: center;
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin: 10px 0 15px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* I wanted to make this look more like a quote that one would find on a wiki, so I looked up some examples
I found this source, and used the border-left property from it: 
https://css-tricks.com/snippets/css/simple-and-nice-blockquote-styling/  */

blockquote {
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  margin: 20px auto;
  padding: 10px 20px;
  max-width: 650px;
  font-style: italic;
  color: #444;
}
img {
  width: 60%;
  display: block;
  margin: 10px auto;
}
