/*
Author: Kaiser Slocum
Date: 3/13/2018
*/

/* Body */
body {
	width: 100%;
	min-width: 1000px;
	max-width: 1900px;
	background-image: url(Sandwich.jpg);
	font-family: Verdana, Geneva, 'Times New Roman';
}
h1{
    font-family: Verdana, Geneva, sans-serif;
    text-align: center;
}
h2{
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
}
h3{
    font-family: Georgia, serif;
    text-align: center;
}

/* Nav */
nav {
	display: block;
	margin-left: -30px;	
	width: 100%;	
	height: 10%;
}
nav ul li:last-of-type {
	float: right;
	width: auto;
	margin-right: -10px;
	margin-top: -20px;
}
nav ul li{  
	list-style-type: none; 
	float: left;  	
	height: 20px;
	width: 45%;			
}
nav ul li a{    
    background-color: tan;
	color: black;
	text-decoration: none;
    border-radius: 50px;
	text-align: center;   	
	margin: 0em 0em 0em 0em;
    padding: .5em 2em .5em 2em;
}
/*padding: top,right,bottom,left;*/
nav ul a:hover, article dl a:hover{
    color: brown;
}
nav ul a:active, article dl a:active{
    color: lime;
}

nav ul li a, article dl a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
}

/* Section */
section {
	display: block;
	width: 60%;
	height: 70%;
}

/* Aside */
aside {
	display: block;
	width: 30%;
	height: 50%;
}

/* Footer */
footer {
	clear: right;
	float: right;
	margin-right: 20px;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	border-radius: 20px;
	background-color: rgba(210, 180, 140, .7);   
}