   h1, h2 {
   font-family: "Parkavenue", serif;
   }
   
   p, body {
  font-family: "Perpetua", Perpetua, serif;
}

body {
	background-color: lightgrey;
	}

/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

/* Homework */

	/* How to add background color to paragraphs ONLY: 
	
	Use the "background-color" property in <p> tags.
	
	Example: */
	 p {
            background-color: ;
        }
   /* Now, each paragraph has a white background. */
   
