*{margin: 0; padding: 0;}

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body{
	background: fffffa;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
}

header {
	width:100%; /* Establecemos que el header abarque el 100% del documento */
	overflow:hidden;
	background:url(../img/circles-light.png);
	margin-bottom:20px;
	height:143px;
}

.wrapper {
	width:90%; /* Establecemos que el ancho sera del 90% */
	max-width:1000px; /* Aqui le decimos que el ancho máximo sera de 1000px */
	margin: auto; /* Centramos los elementos */
	overflow:hidden; /* Eliminamos errores de float */
}

header .logo {
	float: left;
	padding: 3px 0;
	background-size: 100vw 100vh;
	margin: 0px;
}

header nav {
	float:right;
	line-height: 140px;
}

header nav a {
	display:inline-block;
	color:#088A68;
	text-decoration:none;
	padding:10px 20px;
	line-height:normal;
	font-size:18px;
	font-weight:bold;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

header nav a:hover {
	background:#088A68;
	border-radius:50px;
	color: #fff;
}

.contenido {
	width:100%;
	background: #088A68;
}
.contenido p{
	margin-bottom:1em;
	margin-top:3px;
}

@media screen and (max-width: 950px) {
	header .logo,
	header nav {
		width:100%;
		text-align:center; /*Centramos el menu y el logotipo*/
		line-height:200px;
	}

