:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f7fb;
  background: #10121a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #10121a;
}

main {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 48px 0 72px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

a {
  color: #7cebd1;
}

nav a {
  font-weight: 750;
  text-decoration: none;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 8vw, 58px);
  line-height: 1;
}

h2 {
  margin: 34px 0 10px;
  font-size: 20px;
}

p,
li {
  color: #c8cdd8;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 10px;
  color: #7cebd1;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.updated {
  color: #8d95a5;
  font-size: 13px;
}

.action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(124, 235, 209, 0.55);
  border-radius: 8px;
  padding: 0 18px;
  color: #071611;
  background: #7cebd1;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 520px) {
  main {
    width: min(100% - 24px, 760px);
    padding-top: 28px;
  }
}
