/*This is for the page menu up top*/
* {
	margin: 0;
	padding: 0;
}

body {
	background-color: lightgray;
}


nav { 
width: 100%; 
height: 100px;
background: white;
}



ul {
	margin-left: 60px;
}

ul li {
list-style: none;
display: inline-block;
float: left;
line-height: 100px;
}

ul li a {
	display: block;
	text-decoration: none;
	font-size: 20px;
	font-family: arial;
	color: black;
	padding: 0 20px;
}

ul li a:hover{
	color: darkcyan;
}

