.spinner-wrapper {
  background-color: #001C12;
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:all 0.5s;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

/* animate only the SVG inside the wrapper */
.spinner-wrapper img {
  display: block;
  transform-box: fill-box; /* ensure transform-origin works for SVG */
  transform-origin: center;
  animation: zoom 1.2s linear infinite;
}

