.scroll-animation-container{width:20px;height:30px;border:1px solid #fff;border-radius:40px;padding:.5rem;display:flex;align-items:center;justify-content:center}.scroll-animation-container div{width:4px;height:5px;background-color:#fff;border-radius:40px;animation:ScrollAnimation 1s ease-out infinite}@keyframes ScrollAnimation{0%{transform:translateY(-5px);height:10px}50%{opacity:1}to{transform:translateY(10px);height:0;opacity:0}}