html { box-sizing: border-box }
*, *:before, *:after { box-sizing: inherit }
html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl,
dt, dd, blockquote, address { margin: 0; padding: 0 }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal }
a { color: inherit; text-decoration: none }

@font-face {
  font-family: 'QCMLMSansQuot8';
  src: url('fonts/MLMSansQuot8-Regular.woff2') format('woff2'),
       url('fonts/MLMSansQuot8-Regular.woff') format('woff');
}

body {
  font-family: 'QCMLMSansQuot8', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: oldstyle-nums tabular-nums;
  text-align: center;
  color: #fff;
  background: #ccc;

  @media (min-width: 640px) {
    font-size: 1.5rem;
    padding: 1rem 1.5rem 1.75rem 1.5rem;
  }
  @media (min-width: 768px) {
    font-size: 2.25rem;
  }
  @media (min-width: 1024px) {
    font-size: 3rem;
  }
  @media (min-width: 1280px) {
    font-size: 3.75rem;
  }
}

::selection {
  background: #ffffff50;
  color: #ccc;
}

body > * + * {
  margin-top: 1em;
}

header {
  line-height: 1.3;
}

main {
  flex: 1;
}