:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07100d;
  color: #f3f7f5;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 30%, rgba(52, 211, 153, 0.12), transparent 36rem),
    #07100d;
}

.shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 2rem 1.25rem;
}

.status {
  max-width: 34rem;
  margin: 0;
  color: #f3f7f5;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

.status:focus-visible {
  border-radius: 0.375rem;
  outline: 0.1875rem solid #6ee7b7;
  outline-offset: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
