/* BMW M — Base layer. Page defaults that establish the black canvas. */

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font: var(--body-md);
  font-family: var(--font-body);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-heading);
  font-family: var(--font-display);
}

::selection { background: var(--m-red); color: var(--ink); }

a { color: inherit; }
