/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #f5f1e8;
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  color: #2b2b2b;
  line-height: 1.6;
}

/* contenedor del blog */

.container {
  width: 720px;
  margin: auto;
  background: white;
  padding: 40px;
}

/* título principal */

h1 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 40px;
}

/* menú superior */

.menu {
  text-align: center;
  margin-bottom: 40px;
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-size: 18px;
}

.menu a:hover {
  text-decoration: underline;
}

/* posts */

.post {
  margin-bottom: 60px;
}

.date {
  color: #888;
  font-size: 14px;
}

/* imágenes */

img {
  max-width: 100%;
  border: 1px solid #ccc;
  padding: 6px;
  background: white;
  display: block;
  margin: 20px auto;
}

/* archivo de posts */

.archive {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.archive ul {
  list-style: none;
  padding: 0;
}

.archive li {
  margin: 5px 0;
}
.header {
  background-image: url("nuez.jpg");
  background-size: cover;
  background-position: center;
  height: 200px;

  display: flex;
  align-items: center;
  justify-content: center;
}