.image-spinner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 70%;
  max-height: 70%;
  margin: auto;
  aspect-ratio: 1/1;
  background-image: url("/assets/icons/favicon.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 1600px) and (min-height: 900px) {
  .image-spinner.splash-screen {
    max-width: 60%;
    max-height: 60%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .image-spinner {
    animation: image-spinner-spin infinite 4s linear;
  }
}

@keyframes image-spinner-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
