/* h1 changes the color to blue */
h1 {color:blue;}
/* li css changes the font to cursive, and sets the size to 20 and background color to yellow */
li {
	font-family: "Brush Script MT";
    font-size: 20px;
    background-color: yellow;
}
body {background-color: tan;}