body 
{
  background-color: #F8EDE3;
}

h1 
{
  background-color: purple;
  border: solid 5px black;
  color: white;
	font-family: cursive;
	font-style: italic;
  margin: 10px;
  padding: 10px;
  
  /*top right bottom left*
  /* one value = all sides use the same value */
}

p
{
  background-color: blue;
  border: dotted 5px black;
  color: white;
	font-family: 'Roboto', sans-serif;
  margin: 50px 10px;
  padding: 50px;
  /* two values = first value is top and second value is bottom */
  
}

li
{
  background-color: #008000;
  border: double 5px black;
  color: white;
 	font-family: 'Quicksand', sans-serif;
 	font-weight: bold;
  margin: 10px 5px 8px;
  /* three values = first value is top, second value is left and right sides, third value is bottom */
  padding: 10px 8px 9px 7px;
  /* four values = top, right, bottom, left in that order */

}	