@charset "utf-8";
/* CSS Document */
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}

body {
		font-family: 'Cabin', sans-serif;
}

h1, h2, h3 {
	font-family: 'Aclonica', cursive, sans-serif;
}

* {
	margin: 0px;
	padding: 0px;
}

#wrapper {
	margin: 0 auto;
	max-width: 960px;
}

main, article, aside, section, footer {
	margin: 0 auto;
	width: 100%;
	text: color #453B30;
	padding: 3%;
	border: thin solid gray;
}

h1 {
    text-align: center;	
}

header {
    background-image: url(../images/header.jpg);
    background-repeat: repeat-x;
    background-attachment: fixed;
	width: 100%;
	min-height: 220px;
}

header h1 {
    padding-top: 50px;
	color: #FFFFFF;
    text-shadow: 1px 1px 10px #000000;
    font-size: 350%;
   
}

main p {
    text-align: center;
    font-size: 150%;
}

nav {
    background-color: #F2FBD0;
    top: 220px;
    text-align: center;	
}

nav a {
    display: inline-block;
    text-decoration: none;
    padding-top: 1%;
    padding-bottom: 1%;
    width: 48%;
    color: #586B3E;
    font-size: increase 30%;	
}

nav a:hover {
    color: #FFFFFF;
    background-color: #B0BC85;
}

main,footer {
	clear: both;
}

footer {
    text-align: center;
    background-color: #B0BC85;
    font-weight: 900;
	font-size: increase 20%;
}


@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%;
	}}
