@media (max-width: 1000px) {
  .pane {
    width: 95vw;
    height: calc(50vh - 20rem);
    padding-right: 1rem;
    padding-bottom: 66vh;
    scroll-snap-type: y mandatory;
    text-align: center;
    z-index: 1;
    padding-top: 12rem;
    overflow: hidden;
  }

  .side-pane {
    width: calc(100vw - 3rem);
    height: 50vh;
    position: fixed;
    margin-top: auto;
    bottom: 1.5rem;
    left: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10;
    border-radius: 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  @media (prefers-color-scheme: dark) {
    .side-pane {
      background: rgba(0, 0, 0, 0.1);
    }
  }

  .side-pane-viz {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    transition: opacity 0.25s;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  .wave img {
    height: 30vh;
    width: auto;
  }
}
