:root {
  color-scheme: light dark;
  --paper: #efeee9;
  --ink: #222b27;
  --edge: #d2d7ce;
  --highlight: #d7dfd2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

main {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.contact {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 28px;
  min-height: 44px;
  margin-top: 28px;
  padding: 11px 19px;
  border: 1px solid var(--edge);
  border-radius: 24px;
  color: var(--ink);
  font: 13px/1.5 Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.contact:hover { background: var(--highlight); }
.contact:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1c2221;
    --ink: #eeeee6;
    --edge: #424d45;
    --highlight: #394c42;
  }
}
