:root {
  --paper: #f4f3ee;
  --ink: #131313;
  --ink-soft: rgba(19, 19, 19, 0.78);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    Palatino,
    "Times New Roman",
    serif;
  position: relative;
}

.stage {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.tagline {
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.55rem, 2.65vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: 0.004em;
}

.email {
  display: inline-block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: clamp(1.1rem, 1.75vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.email:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.email:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

@media (max-width: 620px) {
  .tagline {
    font-size: clamp(1.18rem, 6.3vw, 1.45rem);
    margin-bottom: 1.4rem;
  }

  .email {
    font-size: clamp(0.98rem, 4.9vw, 1.2rem);
  }
}
