:root {
  --bg: #9a9a94;
  --fg: #33ff33;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: "PT Mono", monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}

.huh {
  text-align: center;
  font-size: clamp(2rem, 10vmin, 8rem);
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(51, 255, 51, 0.4);
}

.huh span {
  display: block;
}
