/* Site baseline: own core browser defaults so spacing is consistent across pages. */

:root {
  color-scheme: light;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove UA typography margins so dynamic content does not inherit unexpected spacing. */
:where(h1, h2, h3, h4, h5, h6, p, blockquote, figure, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  margin: 0;
  padding-inline-start: 1.25rem;
}

:where(button, input, textarea, select) {
  font: inherit;
}

:where(img, picture, svg, canvas, video) {
  display: block;
  max-width: 100%;
}
