body{
	/*Sets the font for the entire page*/
	font-family: "soleil","Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	background-color: ivory;
	margin: 0 0 0 0; 
} 
	
header {
	font-family: "itc-galliard", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 55px;
	color: lightgoldenrodyellow;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	background-color: rgba(15,77,146,0.99);
	width: 100%;
	height: 70px		
}
	
#navPos {
	font-family: "soleil", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: ivory;
	width: 100%;
	height: 35;
	background-color: #0F9184;
	display: flex;
	justify-content: center;
		
}

.navbar {
  	overflow: hidden;
  	background-color: #0F9184;
	width: 50%;
	display: flex;
	justify-content: center;
}

.navbar a {
	 float: left;
	 font-size: 16px;
	 color: palegoldenrod;
	 text-align: center;
	 padding: 14px 16px;
	 text-decoration: none;
}

.dropdown {
	 float: left;
	 overflow: hidden;
}

.dropdown .dropbtn {
	 font-size: 16px;  
	 border: none;
	 outline: none;
	 color: palegoldenrod;
	 padding: 14px 16px;
	 background-color: inherit;
	 font-family: inherit;
	 margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
	 background-color: midnightblue; /*this changes the hover color of the nav*/
	 color: lightcoral;
	 text-decoration: underline;
}

.dropdown-content {
	 display: none;
	 position: absolute;
	 background-color:#C0C0C0;
	 min-width: 100px; /*This controls the width of the dropdown menu*/
	 box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	 z-index: 1;
}

.dropdown-content a {
	 float: none;
	 color: black;
	 padding: 12px 16px;
	 text-decoration: none;
	 display: block;
	 text-align: left;
}

.dropdown-content a:hover {
	 background-color: darkmagenta;
	 text-decoration: underline;
}

.dropdown:hover .dropdown-content {
	 display: block;
}
	
main {
	font-family: "soleil", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	background-color:rgba(15,77,146,0.25);
	width: 95%;
	height: auto;
	margin: 20px auto;
	border-radius: 20px;
	padding: 20px 20px 20px 20px;
	box-sizing: border-box; /*This will make it so your padding will not make your box bigger just have space on the inside*/
}