.scrolling-container {
    overflow: hidden;
    white-space: nowrap;
}
.band {
    height: 195px;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #ffffff;
}
.scrolling-images {
    display: flex;
    width: max-content;
    position: absolute;
    top: 0;
    left: 0;
}
.scrolling-images img {
  object-fit: cover;
  margin-top: 10px; 
  margin-right: 40px;
  border-radius: 20px;
}

/* Animations */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.left-fast {
  animation: scroll-left 30s linear infinite;
}
.right-fast {
  animation: scroll-right 60s linear infinite;
}
.left-slow {
  animation: scroll-left 50s linear infinite;
}