@import url('https://fonts.googleapis.com/css?family=Courgette|Heebo:300,500,900');

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	position: relative;
}

header {
	background: #003769;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 195px;
	width: 100%;
	text-align: center;
}

nav {
	background: #003769;
	position: absolute;
	top: 195px;
	left: 0px;
	height: 15px;
	width: 100%;
	text-align: center;	
}

section {
	background: #eee;
	position: absolute;
	top: 235px;
	width: 65%;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 150px;
	padding-left: 25px;
	margin-bottom: 50px;
}

article {
	background: #eee;
	position: absolute;
	top: 235px;
	width: 70%;
	left: 15%;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 150px;
	padding-left: 25px;
}

aside {
	background: #fff;
	position: absolute;
	top: 235px;
	left: 67%;
	width: 33%;
	height: 50%;
}

footer {
	background: #003769;
	padding: 20px;
	text-align: center;
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 77px;
}

h1 {
	font-family: Heebo;
	font-size: 160px;
	font-weight: 900;
	color: #fff;
	display: inline;
	letter-spacing: -7px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding: 0px;
	line-height: 175px;
	text-align: center;
	left: 50%;
	transform: translate(-50%,0%);
}

h2 {
	font-family: Heebo;
	font-weight: 300;
	font-size: 36px;
	color: #003769;
	text-align: center;
}

p {
	font-family: verdana, sans-serif;
	font-size: 14px;
	margin-bottom: 12px;
	line-height: 22px;
}

header h2 {
	font-family: Courgette;
	font-size: 36px;
	margin-top: -40px;
	color: #fff;
	font-style: italic;
}

nav p {
	font-family: Heebo;
	font-weight: 500;
	font-size: 22px;
	color: #fff;
}

nav a:link {
	text-decoration: none;
	color: #333;
	background: #f90;
	padding: 5px;
}

nav a:visited {
	color: #333;
}

nav a:hover {
	background: #fff;
	color: #f90;
}

nav a:active {
	color: #fff;
}
  
nav a.here {
	background: #fff;
	color: #f90;	
}

section a {
	text-decoration: none;
	font-weight: bold;
}

section a:link {
	color: #b26b00;
}

section a:visited {
	color: #000;
}

section a:hover {
	text-decoration: underline;
	color: #f90;
}

article a {
	text-decoration: none;
	font-weight: bold;
}

article a:link {
	color: #b26b00;
}

article a:visited {
	color: #000;
}

article a:hover {
	text-decoration: underline;
	color: #f90;
}

footer p {
	font-size: 13px;
	font-family: verdana, sans-serif;
	color: #fff;
}