*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body{
	font-family: Arial, Sans-serif;
	font-size: 16px;
	background:url("fondo.jpg");
}
.contenedor{    
	width: 100%;  /* poner en porcentaje el width: del contenedor 90% */
	 max-width: 1200px;           /* tamaño maximo que abarcon los componentes max-width: 1000px;*/
	margin: 20px auto;
	overflow: hidden;
	box-shadow: 0px 0px 30px #088ACD;
	border: 10px ridge lightblue;
	padding: 8px;
}
/* -----------------------header--------------------------------------- */

header nav{
	font-family: Arial;
	background-color: #4E1F06;
}

.navi{
	width: 100%;
   margin: auto;
   margin-left: 210px;
}

ul, ol{
	list-style: none;
	width: 100%;
	
}

.navi li a{
	
	text-decoration: none;
	padding: 15px 50px;
	color: #ffffff;
	display: inline-block;
	background: #4E1F06;
}

.navi li a:hover{
  background: #E58E31;
}
.navi > li{
	/* float: left; */
	display: inline-block;
}

.navi li ul{
	display:none; ;
	position: absolute;
	min-width: 140px;
}

.navi li:hover > ul{
  display: block;
}
/* -------------------------section------------------------------------- */
  section{
   width: 70%;
  	float: left;
  }


  .formulario{
	background: lightblue;
	width: 70%;
	padding: 20px;
	border-radius: 20px;
	margin: 0px auto;
	margin-top: 20px;
}

.formulario input{
	display: block;
}

.formulario input[type="text"],
.formulario input[type="email"],
.formulario textarea {
	width: 100%;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 3px;
	border: 1px solid blue;
	font-family: Arial;
	font-size: 18px;
}

.formulario textarea{
	min-height: 120px;
	max-height: 300px;
	min-width: 100%;
	max-width:100%; 
}

.formulario input[type="text"]:focus,
.formulario input[type="email"]:focus,
.formulario textarea:focus{
  border: 3px solid blue;
}

.formulario input[type="submit"]{
	width: 200px;
	height: 40px;
	margin: 0 auto;
	background: none;
	border: 1px solid blue;
	color: #4fb560;
	padding: 10px;
	cursor: pointer;
	font-size: 16px;
    border-radius: 10px;
}

.formulario input[type="submit"]:hover{
   background: blue;
   color: #fff;
}
/* ------------------------- aside-------------------------------------- */
     aside{
    	width: 30%;
        float: left;


    }

     aside div{
    	width: 100px;
    	height: 100px;
    	margin: 30px;

    }

    aside div img:hover{
          width: 120px;
          height: 120px;
    }

/* ------------------------- footer-------------------------------------- */
footer{
	width: 100%; /* -poner en porcentaje el width del footer 100%--*/
	clear: both;
	/* background: #E85C25; */
	color: black;
	padding: 15px 0px;
	margin-top: 30px;
}

footer p{
	text-align: center;
	font-size: 20px;
}

/* ---------------- para hacerla adaptable---------------------------------- */
 @media screen and (max-width:  800px){
	 body{background: #000000;}
	.main{width: 100%;}
	aside{width: 100%;}
	footer{width: 100%;} 
} 