@keyframes encrier-spin {
  to {
    transform: rotate(360deg);
  }
}

.app-loading {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1c1917;
}

.encrier-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(217, 119, 6, 0.2);
  border-top-color: #d97706;
  border-radius: 50%;
  animation: encrier-spin 0.8s linear infinite;
}

.encrier-loading-name {
  margin-top: 1.25rem;
  color: #f5f5f4;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
