.music-bars{display:grid;grid-template-columns:repeat(5,1fr);gap:.5rem;height:2rem}.bar-container{position:relative;width:.5rem}.bar{width:.5rem;background:linear-gradient(180deg,rgba(0,0,0,0),#e7000b);position:absolute;bottom:0}#bar-1{animation:play 1s ease-out infinite both}#bar-2{animation:play 1s ease-out .5s infinite both}#bar-3{animation:play 1s ease-out .2s infinite both}#bar-4{animation:play 1s ease-out .75s infinite both}#bar-5{animation:play 1s ease-out .9s infinite both}@keyframes play{0%{max-height:10%;height:10%}30%{max-height:65%;height:65%}45%{max-height:45%;height:45%}75%{max-height:100%;height:100%}to{max-height:0;height:0}}