*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    text-align: center;
    background-image: url(./assets/pic2.jpg);
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    height: 80vh;
}
.container{
    height: 600px;
    width: 100%;
    margin-top: 100px;
    overflow: hidden;
}
.container .lrcList li{
    font-size: 24px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    transition: all 1s;

}
.lrcList{
    transform: translateY(300px);
    width: 400px;
    margin: 0 auto;
    list-style: none;
}
.active{
    transform: scale(1.6);
}

audio{
    width: 100%;
    position: absolute;
    bottom: -80px;
    left: 0;
}