body {
  margin: 0;
}

#loading-bg {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  inline-size: 100%;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  block-size: 100px;
  inline-size: 100px;
}

.logo-spinner {
  animation: spin-ease 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  block-size: 100%;
  inline-size: 100%;
  transform-origin: center center;
}

@keyframes spin-ease {
  0% { transform: rotate(0deg); }
  40% { transform: rotate(-180deg); }

  /* 60% { transform: rotate(280deg); } */
  100% { transform: rotate(-360deg); }
}
