/* Site-wide layout: fit viewport without manual browser zoom */
html {
  font-size: 90%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
}

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

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* Main column never wider than the viewport */
main {
  max-width: 100%;
}
