img {
    pointer-events: none !important;
}

.zoom-bg {
  /* Ensure background is correct */
  background-size: 120%;  /* start slightly zoomed in */
  background-position: center;
  background-repeat: no-repeat;

  /* Animation */
  animation: zoomOutBG 8s ease forwards;
}

@keyframes zoomOutBG {
  from {
    background-size: 120%;
  }
  to {
    background-size: 100%; /* zoom out to original */
  }
}
