/* Keep installed iPhone/iPad app pages below the status-bar / camera cutout. */
@media (display-mode: standalone) {
  html {
    min-height: 100%;
    background: #090e1d;
  }

  body {
    min-height: 100dvh;
    padding-top: max(12px, env(safe-area-inset-top)) !important;
  }
}
