body{
	background-color: rgb(0, 128, 0);
	text-align: center;
	border: 5px solid rgb(0, 128, 0) ;
}
nav{
	background-color: rgb(189, 183, 107); 
	border: 2px solid black;
	position: fixed;
	top: 0;
	width: 100vw;
	text-align: center;
	height: 80px;
	margin-left: -20px;
}
nav ul{
	display: flex;
	list-style: none;
	justify-content: center;
	flex-wrap: wrap;
}
nav ul li a{
	display: block;
	color: white;
	font-size: 1.5em;
	text-decoration: none;
	padding: 0;
	margin: 0 10px;
	border: 2px solid black;
	height: 25px;
}
nav ul li a:hover{
	background-color: rgb(70, 130, 180); 
}
nav ul li a:visited{
	color: rgb(128, 0, 128); 
}
main{
	width: 90%;
	margin: 0 auto;
	background-color: rgb(255, 215, 0);	
	border: 10px solid rgb(0, 100, 0);
	margin-top: 80px;
}
header{
	overflow: auto;
	display: flex;
	justify-content: space-between;
	text-align: center;
	padding-top: 15px;
	border: 5px solid rgb(255, 255, 0); 
}
/*header figure:second-child{
	display: none;*/
}
figure{
	margin: 0;
	margin-top: -10px;
}
header figure img{
	display: flex;
	flex-direction: column;
	vertical-align: top
	width: 250px;
	height: 200px;
	border: 10px solid rgb(0, 100, 0);
	margin-bottom: -10px;
	margin-top: -20px
}
/*header figure img:first-child{
	margin-left: -20px;
	margin-right: 20px;*/
}
.header-container{
	display: inline-block;
	width: calc(100% -300px);
}
header h2{
	padding-top: 30px;
}
header h5{
	color: rgb(0, 100, 0);
}
section{
	display: flex;
	text-align: left;
	padding: 0 10px;
}
section article{
	width: calc(80% - 166px);
	margin-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin-top: 10px;
}
section article h2{
	text-align: center;
}
/*.columns ol li:second-child{
	margin: 20px 0;*/
}
.columns{
	columns: 400px 3;
}
.columns p:first-child{
	margin-top: 0;
}
.columns ol li{
	padding-bottom: 5px;
}
section article, section aside{
	display: inline block;
	vertical-align: top;
}
section aside{
	margin-left: 50px;
	padding-left: 10px;
	padding-right: 10px;
	color: rgb(128, 0, 128); 
	border-top: 1px solid rgb(255, 255, 0); 
	border-bottom: 5px solid rgb(255, 255, 0);
	border-right: 5px solid rgb(255, 255, 0);
	border-left: 5px solid rgb(255, 255, 0);
}
section.contact h2{
	text-align: center;
}
section.contact article{
	width: 600px; 
	margin:0 auto;

}
footer{
	text-align: left;
	padding-left: 10px;
	padding-bottom: 15px;
	padding-top: 15px;
	background-color: rgb(255, 255, 0);
	color: rgb(70, 130, 180); /*steele blue*/
	border: 5px solid green;
	margin-left: -5px;
	margin-right: -5px;
}
@media screen and (min-width: 345px){
		nav{
			/*background-color: white;*/
		}
		header{
			display: flex;
			justify-content: space-around;
			text-align: center;
			padding-top: 100px;
		}
		header figure img{
			display: flex;
			flex-direction: column;
			width: 50px;
			height: 50px;
		}
@media screen and (min-width: 400px){
		header figure img{
			display: flex;
			flex-direction: column;
			width: 75px;
			height: 75px;
		}
@media screen and (min-width: 550px){
		header{
			display: flex;
			justify-content: space-around;
			text-align: center;
			padding-top: 60px;
		}
/*		.header-container{
			display: inline-block;
			width: calc(100% - 300px);
		}*/
		header figure img{
			display: flex;
			flex-direction: column;
			width: 125px;
			height: 100px;
		}
}
@media screen and (min-width: 650px){
		header figure img{
			display: flex;
			flex-direction: column;
			width: 175px;
			height: 150px;
		}		
}
@media screen and (min-width: 850px){
		nav{
			background-color: rgb(189, 183, 107); /*dark khaki*/
			border:2px solid black;
			position: fixed;
			top: 0;
			width: 100vw;
			text-align: center;
		}		
		nav ul{
			display: flex;
			list-style: none;
			justify-content: center;
			flex-wrap: wrap;
		}
		nav ul li a{
			display: block;
			color: white;
			font-size: 1.5em;
			text-decoration: none;
			padding: 10px;
			margin: 0 10px;
			border: 2px solid black;
		}
		header{
			display: flex;
			justify-content: space-around;
			text-align: center;
			padding-top: 10px;
		}
		header figure img{
			display: flex;
			flex-direction: column;
			width: 550px;
			height: 300px;
		}
}