:root {
  color-scheme: light;
  --bg: #faf7f0;
  --ink: #20211d;
  --muted: #686a60;
  --line: #d8d0c0;
  --accent: #d6532b;
  --green: #6d7d46;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(32, 33, 29, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 33, 29, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: 28px 28px;
  color: var(--ink);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
}

.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100%;
  padding: 24px;
  text-align: center;
}

.placeholder::before {
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  font-weight: 400;
  line-height: 0.92;
}

.line {
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  line-height: 1.55;
}

.shrug {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink);
}

@media (max-width: 520px) {
  .placeholder::before {
    inset: 12px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }
}
