/* Reinicio básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Contenedor del fondo animado */
.background-zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('breakfast-wooden-table-with-natural-view.jpg'); /* Puedes reemplazar con tu URL */
  background-size: cover;
  background-position: center;
  animation: zoomInOut 20s ease-in-out infinite;
  z-index: -1;
}

/* Animación de zoom */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Ajusta el nivel de zoom */
  }
  100% {
    transform: scale(1);
  }
}

.content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.box {
  background-color: rgba(155, 155, 155, 0.25);
  border: 5px solid #72967c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 5px 5px 7px rgba(10, 10, 10, 0.75);
  text-align: center;
}

.box img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}

.box p {
  font-family: sans-serif;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.85);
  font-size: 22px;
  color: #ddd;
  margin: 0;
}