/* Mobile viewport guard: decorative artwork must not create horizontal scroll. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Keep the soft color glows out of document layout at every viewport size.
   They may extend beyond the edge visually, but can never create a blank
   horizontal canvas when a visitor zooms out. */
.nebula {
  position: fixed;
}

@media (max-width: 800px) {
  .stars {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    overflow: hidden;
  }

  .nebula {
    display: none;
  }

  .shell {
    width: min(calc(100% - 38px), 620px);
  }

  .hero,
  .hero-logo-wrap {
    overflow: hidden;
  }
}
