.scroll-container{display:flex;flex-direction:column;width:100%;height:100%;overflow:hidden}.scroll-content{width:100%;display:flex;justify-content:space-around}.scroll-container:hover .scroll-content{animation:scroll 4s linear infinite}@keyframes scroll{0%{transform:translateY(0)}to{transform:translateY(-100%)}}