/* global compact scale ~10% */
html {
  font-size: 90%;
}
body {
  zoom: 0.9;
}
@supports not (zoom: 0.9) {
  body {
    transform: scale(0.9);
    transform-origin: top center;
    width: 111.1111%;
    min-height: calc(100vh / 0.9);
  }
}
img, video, canvas, svg {
  max-width: 100%;
}
