/* Loading spinner shown before React mounts. Catppuccin Mocha colours. */
@keyframes spin {
  to { transform: rotate(360deg); }
}

#preload {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}

#preload .sp {
  width: 20px;
  height: 20px;
  border: 2px solid #585b70;
  border-top-color: #cdd6f4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#preload span {
  color: #a6adc8;
  font-size: 13px;
  font-family: sans-serif;
}
