body {
  background-color: #f5f5f5; /* Un gris muy clarito, tipo aesthetic */
  font-family: 'Helvetica', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #444;
}

header {
  background: white;
  text-align: center;
  padding: 50px 20px;
  border-bottom: 1px solid #eee;
}

nav {
  margin-top: 20px;
}

nav a {
  text-decoration: none;
  color: #888;
  font-weight: bold;
  padding: 0 10px;
}

nav a:hover {
  color: #333;
}

/* La magia del estilo Pinterest */
.feed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.post {
  background: white;
  width: 280px; /* Ancho de las "cards" */
  margin: 15px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.post:hover {
  transform: translateY(-5px);
}

.post img {
  width: 100%;
  border-radius: 5px;
}

.text-post {
  border-top: 4px solid #ccd5ae; /* Un detalle de color suave */
}

.caption, .text-post p {
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 5px;
}

.date {
  font-size: 11px;
  color: #bbb;
  display: block;
  text-align: right;
}