.sponsors {
background-color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sponsors img {
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .sponsors img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .sponsors img {
    width: 100px;
  }
}
