/* Set colors for the page */
body{
    background-color: white;
    color: black; /* this is the font color*/
}

/* create styles for the h1 tag */
h1{
    color: darkred;
    text-align: center;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
}
/* 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;
}


/* create styles for the h2 tag */
h2{
    color: darkviolet;
    text-align: center;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
}

/* create styles for the h3 tag */
h3{
    color: brown;
    text-align: center;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
}

/* create styles for the p tag */
p{
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
    color: crimson;
    text-align: center;
}


img{
    width: 60%;
    display: block;
    margin: 10px auto; 
    /* this set of 3 commands centers. 10px is spacing top and bottom, auto is left and right*/
}