/* Minimal modern reset */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, form, fieldset {
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}
img, picture, svg {
  max-width: 100%;
  display: block;
}
ul, ol { list-style: none; }
a, a:visited { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
