:root {
  --bg: #0b0b0c;
  --text: #f0ece4;
  --muted: #969087;
  --dim: #56524d;
  --line: #29272b;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--text);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.025), transparent 28rem),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

.center {
  width: min(760px, calc(100vw - 48px));
  text-align: center;
  transform: translateY(-2vh);
}

.tiny {
  margin-bottom: 28px;
  color: var(--dim);
  font: 11px/1 Consolas, "Courier New", monospace;
  letter-spacing: .09em;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(48px, 6.6vw, 84px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 700;
}

p {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
}

.path {
  display: inline-block;
  max-width: min(620px, 88vw);
  margin-top: 28px;
  padding: 9px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #7d776f;
  background: #0f0f11;
  font: 11px/1 Consolas, "Courier New", monospace;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.home {
  display: block;
  width: max-content;
  margin: 20px auto 0;
  color: #77716a;
  text-decoration: none;
  font-size: 13px;
  transition: color .15s ease;
}

.home:hover {
  color: var(--text);
}

.absurd {
  position: fixed;
  left: 50%;
  bottom: 22px;
  width: min(90vw, 720px);
  transform: translateX(-50%);
  text-align: center;
  color: #3f3c40;
  font: 10px/1.4 Consolas, "Courier New", monospace;
  letter-spacing: .035em;
}

@media (max-width: 560px) {
  .center {
    width: calc(100vw - 32px);
  }

  .tiny {
    margin-bottom: 22px;
  }

  p {
    margin-top: 20px;
  }

  .absurd {
    bottom: 16px;
  }
}
