* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
}

body {
  color: #fafafa;
  font-family: "JetBrains Mono", monospace;
}

.holding-page {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: #fafafa;
  font-size: 44px;
  line-height: normal;
  white-space: nowrap;
}

.prompt {
  opacity: 0.45;
}

.word-digital {
  font-weight: 400;
}

.word-bits {
  font-weight: 500;
}

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.1em;
  margin-left: 4px;
  vertical-align: text-bottom;
  background: #22c55e;
  animation: blink 1.1s step-end infinite;
}

.rotating {
  margin: 20px 0 0;
  color: #fafafa;
  font-size: 44px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes blink {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 360px) {
  .logo,
  .rotating {
    font-size: 36px;
  }
}

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