/* CSS */
h1 {color:darkgreen;
  
}
h2 {color:red;
  
}
body{
  background-color:tan;
	font-family: "Gloria Hallelujah", cursive;
}
p{
  padding:30px;
  margin:1em;
  font-size:24px;
  font-family: "Gloria Hallelujah", cursive;
  text-align:center;
}
ul,ol{color:yellow;
  background-color:darkgreen;
  padding:30px;
  margin:1em;
  text-align:left;
  float:left;
}
div{
  float:left;
}
/* IDs */
#shopping, #av, #closing{
  margin:1%;
}
/* unvisited link a:link */
a {
  color:red;
}
/* cursor on link */
a:hover{
  color:yellow;
}
/* fonts */
.gloria-hallelujah-regular {
  font-family: "Gloria Hallelujah", cursive;
  font-weight: 400;
  font-style: normal;
}
