.slider {
   width:120px;
   height:60px;
  overflow: hidden;
  position: relative;
  background: #370360;
  padding: 5px 5px;
  border: 5px solid #370360;  
  color:#FFF8FF;
  font-size:3px;
}

.track {
   width:150px;
   height:100px;
  display:flex;
  gap: 7px;
  width: min-content;
  animation: scroll 10s linear infinite;

}

.track img {
  width:65px;
  height:50px;
  border:7px solid #6D0E5C;
  box-sizing: border-box;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}
