:root {
  --bg: #f5f5f5;
  --text: #111111;
  --link: #2e3c9c;
  --link-hover: #1d265f;
  --muted: rgba(17,17,17,.65);
  --line: rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
button, input { font: inherit; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
