.roulette-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.institution {
  position: relative;
  text-align: center;
  margin: 20px 20px;
}

.image {
  width: 100%;
  max-width: 150px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image:hover {
  transform: scale(1.5);
}

.caption {
  margin-top: 5px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 772px) {
  .roulette-container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
  }

  .institution {
    position: relative;
    transform: none;
    margin: 10px 0; 
    text-align: center;
  }

  .image {
    max-width: 100px;
    margin-bottom: 10px;
  }

  .caption {
    font-size: 14px;
  }
}
