*{
	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-color: #4a465b
}
.contenedor{    
	width: 90%;  /* poner en porcentaje el width: del contenedor 90% */
	 max-width: 1000px;           /* tamaño maximo que abarcon los componentes max-width: 1000px;*/
	margin: 20px auto;
	overflow: hidden;

}

header{background-color: #ffffff}

header nav {width: 100%;}

header nav ul{
	width: 100%;
	overflow: hidden;
	list-style: none;
}

header nav ul li{
	float: left;
	/* display: inline-block; */
}

header nav ul li a{
	text-decoration: none;
	display: inline-block;
	padding: 15px 20px;
	color: #000000;
}

header nav ul li a:hover{
	background:#000000;
    color: #ffffff;
}

.ventajas{
	margin: 10px;
}


.main{
	width: 70%;  /* -----poner en porcentaje el width del main---*/
	background: #ffffff;
	float: left;
}

.main1{
    padding: 20px;
	width: 100%;
	background: #ffffff;
}

.main .imagen{
	width: 100%
}

.main .imagen img{
	width: 100%;
	vertical-align: top;
}

.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;
}


aside{
   width: 30%; /* ----poner en porcentaje el width del aside ---*/
   background: #161f26;
   padding: 20px;
   color: #ffffff;
   float: left;

}

aside .widget{
	margin-bottom: 20px;
}

aside .widget .titulo{
	color: #ff8000;
    border-bottom: 1px solid #ff8000;
    margin-bottom: 10px;
}

aside .widget ul{
	list-style: none;
}

aside .widget ul li{
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding: 10px 0px;
}

aside .widget ul li a{
	color: #ffffff;
	text-decoration: none;

}

aside .widget ul li a:hover{
	color: #8f8f8f;
}

aside .widget p{
	line-height: 27px;
}

footer{
	width: 100%; /* -poner en porcentaje el width del footer 100%--*/
	clear: both;
	background: #000000;
	color: #ffffff;
	padding: 15px 0px;
	text-align: center;
}

 @media screen and (max-width:  800px){
	 body{background: #000000;}
	.main{width: 100%;}
	aside{width: 100%;}
	footer{width: 100%;} 
} 