.gooberstream {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(39vh, 100%), 1fr));
  justify-items: center;
  gap: 5px;
  max-height: 68vh;
  max-width: 90vw;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;
  scrollbar-color: rgb(32, 32, 32) #000000;
}

.scrollable-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
