:root {
  color-scheme: light;
  --bg: #f4efe6;
  --text: #1c1915;
  --muted: #6b645a;
  --line: #d9d0c3;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 18px;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.5;
}

main {
  width: min(38rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.name {
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.bio {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

nav a {
  color: var(--text);
  text-decoration: none;
  text-underline-offset: 0.2em;
}

nav a:hover {
  text-decoration: underline;
}

@media (max-width: 40rem) {
  html {
    font-size: 16px;
  }
}
