#wrapper {
	background: #FFFFFF;
	}

#headerbox {
	background: #00A651;
	height: 50px;
	}

nav {
	padding-top: 10px;
	font-family: "Arial";
	font-size: 135%;
	font-weight: bold;
	text-align: center;
	}

nav a {
	text-decoration: none;
	}
	
nav ul {
	list-style-type: none;
	}

nav a:link {
	color: #000000;
	}

nav a:visited {
	color: #000000;
	}
	
nav a:hover {
	color: #00A651;
	}
	
.logo {
	height: 70px;
    }

main {
	background-color: #ECECEC;
	padding-bottom: 10px;
	text-align: center;
	font-family: "Arial";
	}
    
#homehero {
	display: flex; 
	justify-content: center;
	}

.greentext {
	color: #00A651;
	}
	
footer {
	background-color: #00A651;
	color: #FFFFFF;
	font-size: 75%;
	text-align: center;
	font-family: arial;
	padding: 2em 2em 2em 2em;
	}

@media (min-width: 300px) {
nav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 5%;
	padding: 0;
	}
}
main {
	padding-top: 10px;
	}

@media (min-width: 800px) {
#wrapper {
	margin: auto;
	width: 95%;
	box-shadow: 3px 3px 3px #333333;
	border: 1px solid #000033;
	}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
   	padding-right: 20px;
   	padding-left: 20px;
   	padding-bottom: 10px;
	}
nav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: right;
	gap: 8%;
	}
}


	
	