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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0f766e;
}

.static-page {
  width: min(820px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
  line-height: 1.7;
}

.static-page nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.static-page h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.static-page h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.static-page p,
.static-page li {
  color: #657084;
}

.notice {
  border: 1px solid #dce3ed;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}
