.main-header__button-animation {
display: block;
width: 3px;
height: 10%;
background-color: $basic-white;
border-radius: 3px;
animation-name: mp3;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
transition: background-color 0.3s ease;
@keyframes mp3 {
0% {
height: 10%;
}
50% {
height: 50%;
}
100% {
height: 10%;
}
}