@layer theme, base, components, utilities;

#root > .initial-loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: Canvas;
  color-scheme: dark;
}

#root > .initial-loading img {
  width: 8rem;
  margin-block-end: 1.5rem;
  filter: invert(1);
  animation: initial-loading-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes initial-loading-pulse {
  50% {
    opacity: 0.5;
  }
}
