:root {
  --paper: #f5f1e8;
  --ink: #222;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
}

.home {
  width: min(90%, 720px);
  min-height: 100vh;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

h1 {
  margin: 0;

  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.subtitle {
  margin-top: 0.6rem;

  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.coming-soon {
  margin-top: 4rem;

  font-size: 1.1rem;
  font-style: italic;
}

nav {
  margin-top: 3rem;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:hover {
  text-decoration-thickness: 2px;
}
