/* Match the desktop presentation density of the canonical WordPress staging site. */
@media (min-width: 1200px) {
  body {
    zoom: 0.8;
  }
}

@supports not (zoom: 1) {
  @media (min-width: 1200px) {
    body {
      width: 125%;
      transform: scale(0.8);
      transform-origin: top left;
    }
  }
}
