@charset "UTF-8";
/* CSS Document */

*{
	margin: 0;
	padding: 0;
	
}
#contenedor{
	width: 1200px;
	height: 800px;
	background: #F875AA;
	margin: auto;
	
}
header{
	height: 20%;
	background: #FFDFDF;
	margin-top: 0px;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 10px;
	border-radius: 20px;
	text-align: center;
	
}

.cabecera_rojo{
	color: #FFF6F6;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 100px;
	
}

nav{
	height: 10%;
	background: #AEDEFC;
	margin-bottom: 15px;
	margin-right: 7px;
	margin-left: 30px;
	border-radius: 20px;
	padding-right: 20px;
	padding-left: 300px;
	width: 840px;
	display: flex;/*ayuda a colocar las cajas como si fueran celdas de una tabla*/
	
}

.boton{
	
	width: 370px;
	height: 43px;
	background-color: #F875AA;
	border-radius: 5em;
	cursor:pointer; /*curso en forma dedo*/
	margin-top: 20px;
	margin-right: 268px;
	margin-left: -80px;
	margin-bottom: 22px;
	padding-top: 2px;
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

.boton:hover{
	background-color: #F8BDEB;
}

.boton p{
	text-align: center;
	font-size: 2em;
	color:#FFDFDF;
	font-weight: bold;
	line-height: 1,9em;/*en este caso he utilizado la interlinea para centrar text en la vertical*/
	
}

img{
	margin: 5px;
	border-radius: 2em;
	margin-right: 50px;
	margin-left: 50px;
	margin-top: 5px;
	margin-bottom: 38px;
	
}

#contenido{
	height: 50%;
	margin-right: 30px;
	margin-left: 30px;
	
}

section{
	width: 45%;
	height: 95%;
	background: #FFDFDF;
	border-radius: 20px;
	float: left;
	margin-right: 0px;
	padding-right: 0px;
	padding-left: 0px;
	
}

aside{
	width: 45%;
	height: 95%;
	background: #FFDFDF;
	border-radius: 20px;
	padding-left: 27px;
	float:right;
}

footer{
	height: 13%;
	background: #AEDEFC;
	margin-top: 3px;
	margin-right: 30px;
	margin-left: 30px;
	border-radius: 20px;
	padding-bottom: 0px;
	padding-top: 21px;
	padding-right: 0px;
	padding-left: 37px;
		
}
