/* Hide the body if the width of the device is too short to handle. */
@media screen and (max-width: 189px) {
  body {
    display: none;
  }
}