body{
    .gif-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px; /* space between gifs */
  margin: 15 px 0;
}
.gif-img {
  width: 80px; /* adjust as needed */
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 8px #3332;
}
}