/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: url("img/fondo-madera.jpg") no-repeat center center fixed;
  background-size: cover;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo {
  max-width: 300px;
  width: 80%;
  height: auto;
}

.mensaje .principal {
  font-size: 1.5rem;
  font-weight: bold;
}

.mensaje .contacto {
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0.8;
}