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

html {
  font-size: 18px;
}

body {
  font-family: "Georgia", serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

a {
  font-family: "Georgia", serif;
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a:hover {
  color: #111;
}
