.all-media {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  max-height: 420px;
  overflow: auto;
  padding: 1rem;
}

.media-container {
  height: 12rem;
  width: 9rem;
  max-width: 12rem;
  max-height: 9rem;
  flex: 1;
  border: 1px solid #444;
  overflow: hidden;
}

.media-container:hover {
  box-shadow: 0 4px 8px 0 rgba(255, 75, 75, 0.534),
    0 6px 20px 0 rgba(255, 15, 15, 0.308);
  -moz-box-shadow: 0 4px 8px 0 rgba(255, 75, 75, 0.534),
    0 6px 20px 0 rgba(255, 15, 15, 0.308);
  -webkit-box-shadow: 0 4px 8px 0 rgba(255, 75, 75, 0.534),
    0 6px 20px 0 rgba(255, 15, 15, 0.308);
}

.media {
  max-width: 12rem;
  max-height: 12rem;
  min-width: 0;
  min-height: 0;
}
