.title{
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}
.titles{
    display: inline;
    color: whitesmoke;
}
.equalizer{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100px;
    transform: rotate(180deg);
    position: relative;
    bottom: 15px;
}
.equalizer .bar{
    width: 10px;
    margin: 0 5px;
    background-color: red;
    animation: equalize 1s infinite;
}
.bar:nth-child(1){
   animation-delay: 0s;
}
.bar:nth-child(2){
   animation-delay: 0.2s;
}
.bar:nth-child(3){
   animation-delay: 0.4s;
}
.bar:nth-child(4){
    animation-delay: 0.6s;
}
.bar:nth-child(5){
    animation-delay: 0.8s;
}

@keyframes equalize {
    0%{
        height: 10px;
    }
    50%{
        height: 50px;
    }
    100%{
        height: 10px;
    }
}
