.sponsors-container {
  display: flex;
  justify-content: center;
  gap: 100px; /* space between images */
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.sponsor {
  flex: 1 1 200px; /* grow, shrink, minimum width */
  max-width: 100px; /* keeps from growing too large */
  text-align: center;
}

.sponsor img {
  width: 100%;
  height: auto;
  display: block;
}
