/* You can add global styles to this file, and also import other style files */


body {
  background-image: url('fondo.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Si quieres que la imagen se quede fija al hacer scroll */
  margin: 0; /* Para eliminar márgenes por defecto */
  height: 100vh; /* Para asegurar que el body cubra toda la altura de la pantalla */
}


html, body {
  height: 100%; /* Asegura que el cuerpo ocupe toda la altura de la ventana */
  margin: 0; /* Elimina márgenes por defecto */
}

.content {
  min-height: 100%; /* Asegura que el contenido ocupe toda la altura disponible, menos el footer */
  padding-bottom: 70px; /* Espacio para el footer */
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
/*   background-color: #333; */
  text-align: center;
  padding: 70px 0;
}

.footer-btn {
  padding: 10px 30px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}











