* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #111;
  font-family: ui-sans-serif, system-ui, -apple-system, "Inter", "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  max-width: 32rem;
  padding: 6rem 1.5rem 2rem;
  margin: 0 auto;
  width: 100%;
}

h1 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 2rem;
}

p {
  margin: 0 0 1rem;
  color: #444;
}

p:last-of-type {
  margin-top: 2rem;
  margin-bottom: 0;
}

a {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #000;
}

footer {
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-size: 0.8125rem;
  color: #888;
}
