html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: #000000;
  color: #ffffff;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue UltraLight", "SF Pro Thin", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  width: 100vw;
  position: fixed;
  inset: 0;
}

.status {
  font-weight: 100;
  font-size: clamp(0.9rem, 2.5vw, 1.6rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.mark {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  font-weight: 400;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

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