*{
	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{  }

header h1{
	color: black; 
	margin: 10px;
	margin-bottom: 30px;
	padding: 10px;
	text-shadow: 0px 0px 5px white;
	border: 3px dashed white;
	text-align: center;
}

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;
}


/* ----------------------seccion principal (section)------------------------- */

 .titulo_g{
 	font-family: Comic Sans;
 	font-size: 40px;
 	text-align: center;
	color: #000000;
	text-shadow: 4px 0px 70px blue;
}

.descripcion{
	font-size: 20px;
	text-align: justify;
	text-shadow: 1px 1px 10px #fff;
	color: #000000;

}

article p{
	color:white;
}
.main{
	width: 60%;  /* -----poner en porcentaje el width del main---*/
	/* background: #4E1F06; */
	float: left;
}
.main .imagen{
	width: 100%

	
}

.main .imagen img{
	width: 100%;
	vertical-align: top;
	margin-top: 8px;
}

.main .post{
	padding: 10px;
}



.main .post article h2{
  margin-bottom: 20px;
  color:#424242;
  text-align: center;
  font-size: 30px;
}

.main .post article p{
  margin-bottom: 15px;
  line-height: 27px;
}

section img{
	margin-left: ;
}

/* --------------------------aside------------------------------------------ */
aside{
   width: 40%; /* ----poner en porcentaje el width del aside ---*/
  /*  background:url("aside.jpg"); */
   color: #ffffff;
   float: left;
}

aside .scroll{
	width: 90%;
	margin: 10px 25px;
	height: 420px;
	background:url("aside.jpg");
	overflow: auto;
	/* box-shadow: 0px 0px 50px #12E1EE; */
	color: orange;
	padding: 5px;
}
 aside .scroll img{
 	width: 100%;
 	height: 200px;
 	/* opacity: .5; */
 	border: 3px solid green;
 	
 }

 aside .scroll img:hover{
 	/* opacity: 1; */
 	border: 5px solid red;

 	-webkit-transition: all 1s ease;
 	-webkit-transform: rotate(10deg);transform: rotate(10deg);
 }

 aside .div_video{
 	
   padding: 0px;
   margin:0px ;
   width: 100%;
 }
 iframe{
 	width: 100%;
 	height: 300px;
 }

 .imagenaside{
 	width: 90%;
 	margin-left: 25px ;
 }


/* ------------------------- 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){
	.main{width: 100%;}
	aside{width: 100%;}
	footer{width: 100%;} 
} 