main {
  width: 800px;
  margin: auto;
}
nav ul {
    list-style-type: none; /* remove bullets */
    margin: 0;
    padding: 14px;
    background-color: rgb(205, 235, 171);  
}

nav li {
    display: inline; /* change li from block level element to inline */
    
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
       
}
nav a:link, nav a:visited {
      color: black;
	  background-color: rgb(150, 189, 106);
	  border-radius: 4px; /*round the corners on the nav items*/
	  text-decoration: none; /*remove default underlines from links*/
	  padding: 2px 6px;
	  margin: 0;
      font-size: 0.9em;
      border: 1px solid white;
}
nav a:hover {	
	background-color: rgb(255, 227, 243);
    color: black;
	}
/* change color of the link to the current page to tell the user what page they are on   */

nav a.current { 
  background-color: rgb(215, 235, 199);
  color: white;
    }