:root {
  --green: #18c2a5;
  --green-dark: #0f8b75;
  --blue: #0d2455;
  --text: #13213f;
  --muted: #627394;
  --bg: #f4f7fd;
  --line: #e2e9f4;
  --max: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Manrope, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.muted { color: var(--muted); }
