html,
body {
	background-color: #FFF;
	font-family: "futura-pt",sans-serif;
	font-size: 1em;
	color: #FFF;
	vertical-align: baseline;
	border: 0;
	margin: 0;
	padding: 0;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div {
	display: block;
	overflow: visible;
}

.group:after {
	content: "";
	display: table;
	clear: both;
}

a,
a:visited {
	text-decoration: none;
	color: inherit;
}

h1 {
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.7em;
	margin: 0;
}

h1 a:hover {
	color: #1A9ED4;
}

h1 span {
	opacity: .2;
}

p {
	margin: 0;
	font-size: 1em;
	font-weight: 400;
}

ul {
	list-style-type: none;
	overflow: visible;
	padding: 0;
	margin: 0;
}

::selection {
	background: #e5e5e5;
}



/* geral */



.logo {
	width: 150px;
	position: absolute;
	top: 20px;
	left: 20px;
}

.logo img {
	width: 100%;
}

nav {
	width: 300px;
	height: 100%;
	margin: 0 auto;
	text-align: center;
}

.center {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

footer {
	width: 100%;
	position: absolute;
	bottom: 20px;
	right: 0;
	margin-right: 20px;
	text-align: right;
}



/* Media Queries */



@media screen and (max-width:900px) {



	html {
		font-size: 0.9em;
	}



}



@media screen and (max-width:500px) {



	html {
		font-size: 0.7em;
	}
	
	.logo {
		width: 70px;
	}

	footer {
		text-align: center;
		margin-right: 0;
	}



}