/* A Touch of Class — holding page. One screen, two lines, and the bouquet. */
:root {
  --paper: #f9f3ee;
  --ink: #4c5443;
  --muted: #6f685c;
  --rule: #e3d8ce;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  /* The lower right stays clear for the illustration, at every width. */
  padding: 48px 24px 200px;
  text-align: center;
}
h1 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  max-width: 14ch;
}
h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 26px auto 0;
  background: var(--rule);
}
p {
  margin: 0;
  max-width: 26ch;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
@media (min-width: 700px) {
  main {
    padding-bottom: 120px;
  }
  p {
    font-size: 1rem;
  }
}
