/* styles.css */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  /* Fondo de pantalla con la imagen del prado al atardecer */
  background: url('https://cdn.pixabay.com/photo/2017/08/22/00/38/meadow-2667461_1280.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  position: relative;
  height: 100vh;
}
/* Capa semitransparente para mejorar contraste del texto */
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
/* Contenedor centrado vertical y horizontalmente */
.container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 20px;
}
/* Estilos de texto y botón */
h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #4CAF50; /* Verde que sugiere naturaleza y paz */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: white;
}
button:hover {
  background-color: #45a049;
}