:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #24163f;
  background: #f7f5fb;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
}
nav,
.card,
.notice {
  border: 1px solid #e8e1f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(40 20 70 / 7%);
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 32px;
  padding: 16px 20px;
}
a {
  color: #6f43df;
  font-weight: 700;
}
nav a {
  text-decoration: none;
}
h1,
h2,
h3 {
  line-height: 1.2;
}
h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: -0.04em;
}
h2 {
  margin-top: 38px;
}
p,
li {
  line-height: 1.7;
}
.eyebrow {
  margin: 0 0 10px;
  color: #7346e6;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.meta {
  color: #746b80;
}
.card,
.notice {
  margin: 24px 0;
  padding: 22px;
}
.notice {
  border-color: #e5efb0;
  background: #fbffe7;
}
.button {
  display: inline-block;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: #21143d;
  background: #caff4b;
  text-decoration: none;
}
footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5dfec;
  color: #746b80;
}
code {
  overflow-wrap: anywhere;
}
