@charset "utf-8";

h1, h2, h3 {
	color: #d48626;
	text-shadow: 2px 2px 2px #555555;
}

aside h1, aside h2, aside h3 {
	color: #FFFFFF;
}

body {
	margin: 0px auto;
	min-width: 1200px;
	max-width: 1400px;
	width: 70%;
}

body > main {
	border-radius: 50px;
	padding: 20px;
	overflow: auto;
}

/* General font styles */

html{
	font-family: Verdana, Geneva, sans-serif;
}

h1 {
	font-size: 2em;
}

/* Header styles */

body > header {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap; 
	-webkit-align-items: flex-end;
	align-items: flex-end; 
	width: 100%;
}

header > a {
	margin: 50px 5% 0px 5%;
	position: relative;
	top: -20px;
	width: 20%;
}

header > a img {
	width: 100%;
}

body > header > nav {
	align-items: baseline;
	-webkit-flex: 1 0 400px;
	flex: 1 0 400px;
}

/* Navigation list styles */



header > nav ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	list-style-type: none;
	vertical-align: bottom;
	margin-right: 10%;
	margin-bottom: 0px;
}


header > nav li {
	font-size: 1.4em; 
	line-height: 2.3em; 
	padding: 0px 10px 0px 10px;
	border-radius: 20px 20px 0px 0px;
	margin: 10px 0px 0px 0px;
}

header > nav > ul > li a {
	display: block;
	width: 100%;
	text-decoration: none;
	text-shadow: 2px 2px 4px rgb(200, 200, 200);
}

/* div.class styles */

div.left {
	float: left;
	width: 50%;

}

div.right {
	display: inline;
	vertical-align: top;
}

div.top {
	display: inline-flex
}

div.bottom {
	display: inline-block;
}

footer {
	color: #d4862675;
	text-align: center;
	padding: 30px;
}