/* Keep laptops comfortable while giving large monitors the requested overview. */
@media screen and (min-width:1200px) and (max-width:1599px) {
  body {
    zoom:.85;
  }
}

@media screen and (min-width:1600px) {
  body {
    zoom:.75;
  }
}

@media print {
  body {
    zoom:1;
  }
}
