:root {
  color-scheme: light;
  --sky: #afcee3;
  --ink: #184d76;
  --muted: #5f7f98;
  --cream: #fffaf1;
  --lavender: #8176aa;
  --peach: #efad80;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--sky);
  color: var(--ink);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Avenir Next", system-ui, sans-serif;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 46px);
  line-height: 1;
}

.brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: "Avenir Next", system-ui, sans-serif;
}

.card {
  padding: clamp(24px, 5vw, 42px);
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-radius: 38px;
  background: var(--cream);
  box-shadow: 0 12px 0 rgba(225, 177, 137, 0.78);
}

h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

h2:first-child {
  margin-top: 0;
}

p,
li {
  font-family: "Avenir Next", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

ul {
  padding-left: 22px;
}

a {
  color: #5f4e94;
  font-weight: 700;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 18px;
  background: #f4edff;
  text-decoration: none;
}

.updated {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

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

  .brand img {
    width: 58px;
    height: 58px;
  }

  .card {
    border-radius: 28px;
    box-shadow: 0 8px 0 rgba(225, 177, 137, 0.78);
  }
}
