/* GENERAL */

html, body {
 margin: 0;
 padding: 0;
 height: 100%;

}

body {
 background-color: white; 
 font-family: "Gill Sans" , "Gill Sans MT", "33535gillsansmt", "Helvetica Neue",Helvetica, Arial, sans-serif;
 min-width: 800px;
 background-image: url("../img/background.jpg");
}

a{
	text-decoration: none;
	cursor: pointer;
}


/* HEADER */

header{
	width: 100%;
	top: 0;
	left:0;
	position: fixed;
	font-weight: lighter;
	font-size: 12px;
	letter-spacing: 1px;
	display: block;
	height: 100px;
	background-color: rgba(0,0,0,0.8);
	z-index: 999999;
}

header nav div {
	margin-top: -52px;
}

header a {
	color: #FFF;
	letter-spacing: 2px;
}


header nav {
	padding: 15px 15px 0;
}


header nav > a:first-of-type{
	display: block;
	margin-bottom: 5px;
	width:152px;
}


header nav > a:first-of-type img{
	width: 152px;
}

header nav > a:nth-of-type(2){
	display: inline-block;
	letter-spacing: 2px;
	text-align: center;
	width: 152px;
}

header nav > a:nth-of-type(2) span{
	font-size:8px;
	vertical-align: top;
}


section{
	position: absolute;
	top: 100px;
	width: 100%;
}

h1{
	display: inline-block;
	margin: 50px;
	position: relative;
	font-weight: 400;
	background: #AE2920;
	font-size: 3em;
	padding: 5px 10px;
	letter-spacing: 0.1em;
}

h1 span{
	font-size:22px;
	vertical-align: top;
}

div{
	margin: 50px auto 0;
	position: relative;
	width: 800px;
}

div h2{
	color: #fff;
	font-weight: 400;
	font-size: 3em;
	letter-spacing: 0.1em;
	padding: 0 10px;
	margin: 0;
}

div p{
	margin: 0;
	padding: 10px;
	color:#fff;
	font-style: italic;
	font-size: 1.2em;
}


