/*-------------------------
	SIMPLE RESET
--------------------------*/
*{
	margin:0;
	padding:0;
}
/*-------------------------
	BACKGROUND CSS
--------------------------*/
html {
	min-height: 100%;
	background-color:#333;
	background-size: cover;
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	font-family:Helvetica,"Helvetica Neue", "Segoe UI", Sans;
}

body{
	min-height:100%;
}

.logo {
	float:left;
	margin:20px 0 0 20px;
}

h1 {
	color:#f1f1f1;
	font-size:140%;
	font-weight:600;
	position:absolute;
	left:20px;
	bottom: 20px;
}

a {
	color:#fff;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

nav{
	margin:20px 20px 0 0;
	float:right;
}


nav li {
	margin:0;
	list-style-type:none;
	display:inline;
	padding:10px;
}

nav li:first-child {
	padding:0 10px 0 0;
}

nav li:last-child {
	padding:0 0 0 10px;
}   
