@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --paper: #f6f3ee;
  --accent: #2c5c6a;
  --max: 740px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, #f4efe6 40%, #efe7dc 100%);
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  opacity: 0.22;
}

.page {
  position: relative;
  max-width: var(--max);
  padding: 4.75rem 1.75rem 5rem;
  margin: 0 auto;
}

p,
ul {
  margin: 0 0 1.5rem;
}

ul {
  list-style: disc;
  padding-left: 1.25rem;
}

li {
  margin: 0 0 0.35rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 92, 106, 0.4);
}

a:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 640px) {
  .page {
    padding: 3.75rem 1.25rem 4rem;
  }
}
