*{
	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: 100%;
      background: #712E10;
       padding: 40px;
       overflow: hidden;
      
  }
  
  .receta_num1{
  	float: left;
  	margin: 10px;
  	margin-top: 85px;
  	width: 50%;
  	
    
  }

   .receta1 {
  	width: 500px;
	height: 600px;
	background: #f79256;
	box-shadow: 0px 0px 100px rgba(150,45,200,.5);
	overflow: auto;
  }



  _____________________________

  .receta_num2 {   /* este es el div donde esta todo lo de la receta 2 */
  	width: 50%;

  }

  .receta_num2{
  	float: right;
  	margin: 10px;
  }

   .receta2 {
  	width: 500px;
	height: 600px;
	background: #f79256;
	box-shadow: 0px 0px 100px rgba(150,45,200,.5);
	overflow: auto;
  }

  .tamales {
  	color: #ffffff;
	text-shadow: 4px 0px 20px blue;
	font-size: 30px;
	text-align: center;
  }

  .receta2 img{
  	width: 100%;
  	height: 40%;
  }
 
 h2{
 	margin: 10px;
 	text-align: center;
 } 
 section p{
 	margin: 20px;
 	font-size: 18px;
 	text-align: justify;
 }

/* ------------------------- footer-------------------------------------- */
footer{
	width: 100%; /* -poner en porcentaje el width del footer 100%--*/
	clear: both;
	/* background: #E85C25; */
	color: black;
	padding: 15px 0px;
}

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%;} 
} 