@charset "UTF-8";
/* CSS Document */
*{
	margin:0px;
	padding: 0px;
}

#contenedor{
	width: 1200px;
	height: 500px;
	background: #8E4042;
	margin:0.5em auto;
	padding: 0.5em;	
}
#header{
	height: 8%;
	background: #86EF6E;
	border-radius: 1em;
	margin:1em;
	padding: 0.1em
	}
#nav{
	height: 8%;
	background: #34C6D6;
	border-radius: 1em;
	margin: 1em;
	text-align: center;
	padding-top: 2%;
}

.boton{
	text-decoration: none; /*decoración del texto, en este caso no la quiero*/
	background-color:crimson;
	border: 5px solid #D6494B;/*color del borde */
	padding:10px;/*espacio interior caja */
	color:beige;/*color del texto */
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	border-radius: 50px/*redondea vértices*/
	
	
	
	
	
	
}

#contenido{
	height: 55%;
	background-color:cornflowerblue;
	margin:1em;
}

#section{
	height: 100%;
	width: 60%;
	background: #29D51E;
	float:left;	
}
#aside{
	height: 100%;
	width:40%;
	float:right;
	background:#383CC1;
}

#footer{
	background: #8885D0;
	wigth:100%;
	height: 7%;
	margin:1em;
}