html, body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0F1B4D;
  color: #F5EFE0;
}

.wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(245, 239, 224, 0.25);
  border-top-color: #D4AF37;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

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

p {
  font-size: 14px;
  opacity: 0.8;
  max-width: 320px;
}

#error-view {
  display: none;
}
