body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1{
    position: relative;
    color: #333;
    font-size: 4em;
    letter-spacing: 5px;
    border-bottom: 16px solid #333;
    line-height: 1.4;
    font-family: consolas;
    text-transform: uppercase;
}

h1::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: dodgerblue;
    border-bottom: 16px solid dodgerblue;
    animation: lod 2s linear infinite;
    overflow: hidden;
}

@keyframes lod {
    0%{
    width: 0;
    }

    100% {
        width: 100%;
    }
}

.music{
    width: 300px;
    height: 200px;
    bottom: 110px;
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.music .bar {
    width: 12px;
    border-radius: 10px;
    background: white;
    animation: movement 1.5s ease-in-out infinite;
}

@keyframes movement {
    0%, 100%{
        height: 2px;
    }
    50%{
        height: 80px;
    }
}

.music .bar:nth-child(1){
    background: #b65252;
    animation-delay: 1s;
}
.music .bar:nth-child(2){
    background: pink;
    animation-delay: .8s;
}
.music .bar:nth-child(3){
    background: #b65252;
    animation-delay: .6s;
}
.music .bar:nth-child(4){
    background: pink;
    animation-delay: .4s;
}
.music .bar:nth-child(5){
    background: #b65252;
    animation-delay: .2s;
}
.music .bar:nth-child(6){
    background: pink;
    animation-delay: .2s;
}
.music .bar:nth-child(7){
    background: #b65252;
    animation-delay: .4s;
}
.music .bar:nth-child(8){
    background: pink;
    animation-delay: .6s;
}
.music .bar:nth-child(9){
    background: #b65252;
    animation-delay: .8s;
}
.music .bar:nth-child(10){
    background: pink;
    animation-delay: 1s;
}