@charset "UTF-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
}

#contenedor{
	width: 1200px;
	height: 800px;
	background:#F58F0B;
	margin: auto;
}
header{
    height: 20%;
    background: #FBBA4F;
    margin-top: 0px;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 10px;
	border-radius: 20px;
	text-align: center;

}

.cabecera_azul{
	color:#F58F0B;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 100px;
}

nav{
    height: 10%;
    background: #FBBA4F;
	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:#FBBA4F;
	margin-bottom: 15px;
	margin-right: 30px;
    margin-left: 30px;
	border-radius: 20px;
}
section{
	width: 40%;
	height: 90%;
	background: #F58F0B;
	float: left;
	border-radius: 20px;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #FFFFFF;
}
aside{
	width: 40%;
	height: 90%;
	background: #F58F0B;
	float: right;
	border-radius: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 20px;
	
}
footer{
	height: 12%;
	background:#FBBA4F;
	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: #F58F0B;
	text-align: center;
	font-size: 25px;
	font-weight: bold;	
}
.boton{
			width: 600px;
			height: 50px;
			background-color:#F58F0B;
			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:#FBBA4F;/*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;
}
