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

#contenedor{
	width: 1200px;
	height: 1000px;
	background:#7F4EBE;
	margin: auto;
}
header{
    height: 15%;
    background:#E59EF5;
    margin-top: 0px;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 10px;
	border-radius: 20px;
	text-align: center;

}

.cabecera_azul{
	color:#7F4EBE;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 120px;
}

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

#contenido{
	height: 50%;
	background:#E59EF5;
	margin-bottom: 15px;
	margin-right: 30px;
    margin-left: 30px;
	border-radius: 20px;
}
section{
	width: 40%;
	height: 90%;
	background: #7F4EBE;
	float: left;
	border-radius: 20px;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
		font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}
aside{
	width: 40%;
	height: 90%;
	background: #7F4EBE;
	float: right;
	border-radius: 20px;
	margin-bottom: 20px;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 20px;
		text-align: center;
		font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif"
	
}
footer{
	height: 12%;
	background:#E59EF5;
	margin-top: 12px;
	margin-right: 30px;
	margin-left: 30px;
	border-radius: 20px;
	padding-top: 0px;
	margin-bottom: 1px;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
    color: #7F4EBE;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	
	
}

img{
    margin: 5px;
    border-radius: 2em;
    margin-right: 50px;
    margin-left: 50px;
    margin-top: 9px;
    margin-bottom: 5px;	
}
.boton{
			width: 600px;
			height: 50px;
			background-color:#7F4EBE;
			border-radius: 5em;
			cursor: pointer;
			/*cursor en forma dedo*/
			transition: background-color 1s;/*para hacer una transicion de color y el tiempo dura*/
			margin: 20px;
	        font-weight: bold;
		}
		
.boton:hover{
			background-color:#E59EF5;/*pasar sobre boton cambia color*/
		}
		
.boton p{
			text-align: center;
			font-size: 2em;
			color: #FFFFFF;
			font-weight: bold;
		}
.boton a{
	text-decoration: none;
	color: #FFFFFF;
}

	
