/*
   New Perspectives on HTML and CSS
   Final Project
   
   Filename: layout.css

   This file contains styles used in the mpl.htm file.

*/

/* Header styles */
   
header {
	background-color: grey;
   border-bottom: 1px solid rgb(18, 15, 12);
   height: 220px;
   width: 100%;
   margin-top: 20px;
}

header h1 {
	float: left;
   line-height: 78px;
   text-align: center;
   width: 60%;
   font-size: 70px;
   font-family: Old English Text MT;
}

header h2{
	float: left;
	line-height: 65px;
	text-align: center;
	width: 20%;
	font-size: 2em;
}

header nav{
	clear: left;
		
}
header nav li{
	float: left;
	padding: 3px;
	margin-top: 3px;
	font-size: 1.5em;
	text-align: center;
	font-variant: small-caps;
	border-top: thin solid black;
	width: 19%;
		
}

header nav li a{
	color: rgb(8,29,191);
}

header nav li a:hover{
	color: teal;
}

/* Footer Styles */

footer {
   	
   font-size: 1.5em;
   border-top: 1px solid black;
   padding-bottom: 20px;
   padding-top: 10px;
   word-spacing: 5px;
   text-align: center;
   background-color: grey;
   margin-bottom: 20px;
}

/* Top of page return */

a#scroll-to-top {
	padding: 2px;
	margin: 1px;
	color: rgb(8,29,191);
	float: right;
}



