/* Minimal document defaults. Consumers link styles.css and inherit these. */
body{
  margin:0;
  background:var(--surface-page);
  color:var(--text-body);
  font-family:var(--font-body);
  font-size:var(--text-body-md-size);
  font-weight:var(--font-weight-light);
  line-height:var(--text-body-md-line);
  -webkit-font-smoothing:antialiased;
}
a{color:var(--text-link);text-decoration:none}
a:hover{color:var(--navy-deep);text-decoration:underline}
a:active{color:var(--navy-press)}
::selection{background:var(--navy-subdued);color:var(--ink)}
*,*::before,*::after{box-sizing:border-box}
