@media (max-width: 1200px) {
  body {
    font-size: 12px;
  }
  .left h3 {
    font-size: 12px;
  }
  .mid-section h4 {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  html, body { 
    height: 100%; 
    overflow: hidden; 
    position: fixed; /* important for iOS */
    width: 100%;
    touch-action: none;          /* prevents scroll gestures */
    overscroll-behavior: none;
  }
  body { 
    min-height: 100svh; 
    overscroll-behavior: none; 
    touch-action: manipulation; 
  }
  .main, .left, .right, .middle {
    touch-action: manipulation;     /* disables double-tap zoom */
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .main {
    width: 100vw;
  }
  .gpm-selector {
    right: 20px;
  }
  label {
    width: auto;
    min-width: 0;
    padding: 5px 2vw;
    white-space: nowrap;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 8px;
  }
  .util-buttons {
    bottom: 20px;
    right: 20px;
  }
}