/*Standard*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #251c1c;
}

.contenedor {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  overflow: hidden;
}

/*header*/
header {
  background-color: #fff;
}
header nav {
  width: 100%;
}
header nav ul {
  width: 100%;
  overflow: hidden;
  list-style: none;
}
header nav ul li {
  float: left;
}
header nav ul a {
  text-decoration: none;
  display: inline-block;
  padding: 15px 20px;
  color: #000;
}
header nav ul a:hover {
  background-color: #000;
  color: #fff;
}

.main {
  width: 70%;
  background-color: #fff;
  float: left;
}
.main .imagen img {
  width: 100%;
  vertical-align: top;
}
.main .posts {
  padding: 40px;
}
.main .posts article h2 {
  margin-bottom: 20px;
  color: #424242;
}
.main .posts article p {
  margin-bottom: 15px;
  line-height: 27px;
}

/*Aside */
aside {
  width: 30%;
  background-color: #161f26;
  padding: 20px;
  color: #fff;
  float: left;
}
aside .widget {
  margin-bottom: 20px;
}
aside .widget .titulo {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
  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 0;
}
aside .widget ul li a {
  color: #fff;
  text-decoration: none;
}
aside .widget ul li a:hover {
  color: #8f8f8f;
}
aside .widget p {
  line-height: 27px;
}

/*footer*/
footer {
  width: 70%;
  overflow: hidden;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 15px 0;
}

/*Media Queries*/
@media screen and (max-width: 800px) {
  .main {
    width: 100%;
  }
  aside {
    width: 100%;
  }
  footer {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */