/* Set colors for the page */
body {
    background-color: rgb(221, 187, 187);
    color: black;
    /* this is the font color*/
}

/* create styles for the h1 tag */
h1 {
    color: rgb(88, 16, 16);
    font-family: Arial, Helvetica, sans-serif;
    font-size: xx-large;
    text-align: center;
}

h2 {
    color: rgb(88, 16, 16);
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    text-align: center;
}

h3 {
    color: rgb(88, 16, 16);
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    text-align: center;
}

p {
    color: rgb(88, 16, 16);
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
    text-align: center;
}


ul {
  list-style-position: inside; 
  text-align: left;       
  color: rgb(88, 16, 16);
  font-family: Arial, Helvetica, sans-serif;
  font-size: larger;
  display: inline-block;
  margin: 0 auto;
}

img {
    width: 600px;
    display: block;
    margin: 10px auto;
    /* this set of 3 commands centers. 10px is spacing top and bottom, auto is left and right*/
}