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;
}

/* Keep this size when React adds the shared .stacker-logo class. */
.stacker-boot .stacker-boot__mark {
  display: block;
  width: min(420px, calc(100vw - 48px));
  height: auto;
}

.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;
  }
}
