body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  background-image: url('../Imagenes/fondo.png');
  background-repeat: repeat; /* Repite la imagen de fondo */
  background-size: auto; /* Mantiene el tamaño original de la imagen */
  width: 100%;
  min-height: 100vh;
  position: relative;
  color: white;
  text-align: center;
}

nav {
  background: none;
  padding: 10px 0;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.blog-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  max-width: 800px;
  width: 100%;
}

.blog-text, .blog-image {
  margin: 10px 0;
  width: 100%;
}

.blog-image img {
  width: 100%;
  height: auto;
  max-width: 500px; /* Tamaño máximo de las imágenes */
  border-radius: 8px;
}

@media (max-width: 600px) {
  .blog-image img {
    max-width: 100%;
  }
}





