/* Set colors for the page */
body {
  background-color: rgb(255, 242, 172);
  color: black;
  font-size: x-large;
  /* this is the font color*/
}

/* create styles for the h1 tag */

/* Sample - pick your own colors and settings. Make sure to include the ; at the end of the line

h1{
    color: teal;
    font-family: serif;
    font-size: larger;
    text-align: center;
}
    */
h1 {
  color: rgb(11, 11, 135);
  font-family: "Times New Roman", Times, serif;
  font-size: larger;
  text-align: center;
}

/* create styles for the h2 tag */
h2 {
  color: rgb(114, 13, 13);
  font-family: cursive;
  font-size: larger;
  text-align: center;
}

/* create styles for the h3 tag */
h3 {
  color: rgb(80, 20, 136);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: larger;
  text-align: center;
}

/* create styles for the p tag */
p {
  color: black;
  font-family: "Times New Roman", Times, serif;
  font-size: x-large;
  text-align: justify;
}

img {
  width: 32%;
  display: block;
  margin: 10px auto;
  /* this set of 3 commands centers. 10px is spacing top and bottom, auto is left and right*/
}
