html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  background: #071117;
  color: #f6fbff;
}

.stacker-boot {
  min-height: 100dvh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  font-family: system-ui, sans-serif;
}

.stacker-boot__mark {
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  font-style: italic;
  letter-spacing: 0.08em;
  text-shadow: 0 0.08em #071117, 0.08em 0.12em #f05a32;
}

.stacker-boot__status {
  color: #8fdcf4;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: stacker-boot-pulse 1s ease-in-out infinite alternate;
}

@keyframes stacker-boot-pulse {
  to {
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stacker-boot__status {
    animation: none;
  }
}
