body {
	background-color: #A3E444;
	background-repeat: no-repeat;
	color: #black;
	font-family: Verdana, Arial,sans-serif;
}

header {
	background-color: #f1a919; 
	background-image: url(art.jpeg);
	background-position: right;
	background-repeat: no-repeat;
	height: 150px;
	color: #FFFFFF;
	font-family: Georgia, serif;
	padding-right: 7em;
	text-shadow: 2px 2px 2px black;
	}

#logo{
	height: 150px;
	width: 175px;
	float: left;
}

h1 {
	color: white;
	text-align: center;
	padding-top: .5em;
	font-size: 70px;
}

h2 {color: white;
	font-family: Georgia,serif;
	text-align: center;
	font-size: 35px;
	text-shadow: 2px 2px 2px black;
}

h3 {
	text-align: left;
	color: #f1a919;
	font-size: 14px;
	font-weight: bold;
	}

h4 {
	text-align: left;
	color: white;
	background-color: #f1a919;
	font-size: 10px;
}

#wrapper {width: 85%;
	margin-right: auto;
	margin-left: auto;
	background-color: #F7E147;
	min-width: 960px;
	max-width: 2048px;
	box-shadow: 3px, 3px, 3px, black;
}

nav {
	font-weight: bold;
	padding-right: 2em;
	padding-bottom: 0.20em;
	text-align: center;
}

nav a {
	text-decoration: none;
	background-color: dark green;
	text-align: center;
	padding: 2em;
	}


nav li {
	list-style-type: none;
	display: inline;
	font-weight: 800;
	background-color: green;
	padding-top: 2em;
	padding-bottom: 2em;
	color: white;
	font-size: 15px;
	border: black solid 2px;
	padding-left: 3.5em;
	padding-right: 3.5em;
	}

footer {
	font-size: .70em;
	font-style: italic;
	text-align: center;
	padding: 1em;
}

main {
	padding-right: 4em;
	padding-left: 4em;
	display: block;
}

nav a:link {
	color: white;
}

nav a:visited {
	color: white;
}

nav a:hover {
	color: #1d8c78;
}

.image {
	border: 2px solid black;
	margin-right: 1em;
	margin-left: 2em;
	margin-top: 3em;
}

ul {
	font-weight: 800;
	}

li {
	font-weight: bold;
	text-align: left;
	font-family: Georgia,serif;

	}
	
#grid { 
	display: grid;
	grid-template-columns: 55% 1fr;
	grid-template-rows: 100px auto 50px;
    grid-template-areas:
        "header  header"
        "main     aside"
        "footer  footer";
    }
           
#homehead { 
	grid-row: 1 / 2;
    grid-column: 1 / 3; 
    }           
           
#homebody { 
	grid-row: 2 / 3; 
	grid-column: 1 / 2;
	margin-left: 5em; 
	margin-right: 6.5em;
	margin-top: 2em;
	}           
           
#homeimg { grid-row: 2 / 3; grid-column: 2 / 3; }           
           
.banner {
	color: green;
	text-shadow: 2px 2px 2px white;
	font-size: 45px;
	}           
		

#homebody a:link {
	color: white;
}

#homebody a:visited {
	color: white;
}

#homebody a:hover {
	color: #1d8c78;
}		

.list {
	padding-top: 2em;
	}
	
	
form{
	width: 60%;
	display: grid;
	grid-gap: 1em;
	grid-template-columns: 10em 1fr;
	}
	
input[type="submit"] { 
	grid-column: 2;
	width: 9em;
	}		
	
table td{
	border: 1px solid black;
	}	
	
table {
	width:  75%;
	margin: auto;
	}	
	
td {
	padding-bottom: .3em;
	padding-right: 3.2em;
	height: 5em;
	vertical-align: top;
	background-color: green;
	color: white;
	font-size: 14px;
}	
	

	