:root {
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #17342a;
  background: #f4f7f5;
}

body {
  margin: 0;
}

main {
  max-width: 42rem;
  margin: 12vh auto;
  padding: 2rem;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  font-size: 1.08rem;
}

a {
  color: #12633f;
  font-weight: 650;
}

.destination {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.7rem 1rem;
  border: 1px solid currentColor;
  border-radius: 0.35rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    color: #e8f0ec;
    background: #10251e;
  }

  a {
    color: #7dd3a8;
  }
}
