html,
body {
  margin: 0;
  min-height: 100%;
  background: #0b0b0b;
  color: #e8e8e8;
  font-family: Consolas, monospace;
}

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

main {
  width: min(720px, 90%);
  padding: 40px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.08em;
}

.tagline {
  opacity: 0.65;
  margin-bottom: 40px;
}

.status {
  border-left: 2px solid currentColor;
  padding-left: 20px;
  line-height: 1.8;
}

.status span {
  display: inline-block;
  width: 150px;
  opacity: 0.55;
}

.footer {
  margin-top: 40px;
  opacity: 0.35;
  font-size: 0.9rem;
}

.footer::after {
  content: "_";
  margin-left: 4px;
  opacity: 1;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}