@media screen and ((max-width: 1200px) or (max-height: 500px)) {
  #app {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
  }

  /***
   * Graphic
   ***/
  #app .exhibit {
    flex: 0 100px;
  }

  #app .exhibit .gradient {
    --background-angle: -60deg;
  }

  #app .exhibit .pattern {
    background-size: 32px;
  }

  #app .exhibit .logo {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }

  #app .exhibit .logo .home {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: black;
    text-decoration: none;
  }

  #app .exhibit .logo .home span {
    display: none;
  }

  #app .exhibit .logo img {
    width: 32px;
    height: 32px;
    box-shadow: 0 0 20px black;
    border-radius: 2em;
  }

  /***
   * Main
   ***/
  #app .main {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    line-height: 1.5em;
    overflow: scroll;
  }

  #app .main article {
    margin: 32px 16px;
  }

  #app .main article section {
    margin: 0 0 64px 0;
  }

  #app .main article section img.svg {
    margin: 0 -16px;
  }

  #app .main article section a {
    color: var(--color-aqua);
  }

  #app .main article section .play {
    color: black;
    background: linear-gradient(0deg, var(--color-gray-5), var(--color-white));
    margin: 16px 0;
    padding: 8px 32px;
    text-decoration: none;
    text-align: center;
    display: block;
  }

  #app .raster-wrapper {
    margin: 0 -16px;
  }

  #app .raster-wrapper img {
    max-width: calc(100% + 32px);
    height: auto;
  }
}