  /* --- Gallery --- */
  #gallery {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px;
  }
  body {
    background-color: #504f4f;
  }
  @media (min-width: 1100px) {
      #gallery {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  #gallery img {
      width: 100%;
      display: block;
      border-radius: 4px;
  }

  .loading {
      text-align: center;
      padding: 20px;
      color: #cccbcb;
  }