

.scroll-container {
    width: 100%;
   max-height: 30vh;
    overflow: hidden;
    position: relative;
}

.image-list {
    display: flex;
    flex-direction: row;
    animation: scroll 20s linear infinite;
}

.image-list img {
   max-height: 20vh;
    object-fit: cover;
}

/* Infinite scrolling effect */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
