:root {
  color: #171717;
  background: #f7f4ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0f766e;
  font-weight: 800;
}

.shell {
  width: min(820px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d9d3c9;
  color: #171717;
  text-decoration: none;
}

.doc {
  background: #fff;
  border: 1px solid #d9d3c9;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 28px rgb(23 23 23 / 8%);
}

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

h2 {
  margin-top: 28px;
}

p,
li {
  color: #3f4147;
  line-height: 1.6;
}

.status {
  color: #a36a00;
  font-weight: 800;
}

