@charset "utf-8";
/* CSS Document */
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
#wrapper{
	margin: 0 auto;
	max-width: 960px
}
body {
	font-family: 'Cabin', sans-serif;
}
h1, h2, h3{
	font-family: 'Aclonica', cursive, sans-serif;
}

main, article, aside, section, footer{
    margin: 0 auto;
    width: 100%;
    color: #453B30;
    padding: 3%;
    border: thin solid gray;
}
h1{
	text-align: center;
}
header{
    background-image: url("../images/header.jpg");
    background-repeat: repeat-x;
    width: 100%;
    background-attachment:fixed;
    min-height: 220px;
}
header h1{
    padding-top: 50px;
    color:white;
    text-shadow: 1px 1px 10px black;
	font-size: 350%;
}
main p {
	text-align: center;
	text-size: 150%;
}
nav{
	background-color: #F2FBD0;
	top:220px;
	text-align: center;
	text-size: 100%;
}
nav a{
	display: inline-block;
	text-decoration: none;
	padding-top: 1%;
	padding-bottom: 1%;
	width: 48%;
	color: #586B3E;
	text-size: 130%;
}
nav a:hover{
	color:white;
	background-color:#B0BC85
}
main, footer{
	clear:both;
}
footer{
	text-align: center;
	background-color: #B0BC85;
	font-weight: 900;
	text-size: 120%;
}

@media screen and (min-width:800px){
	.column{
		width: 24%;
		float: left;
	}
	 
aside {
	width:40%;
	float:right;
}
	article{
		width: 60%;
		float: left;
	}
	nav a{
		width: 24%;
	}
}