* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #000;
  color:#666;
  text-align: center;
}
h1 {
  color: #fff;
  margin-top: 20px;
}
audio {
  width: 450px;
  margin: 30px 0;
}
.lyric-container {
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
}
.lyric-list {
  list-style: none;
  transition: transform 0.3s ease-in-out;
}
.lyric-list li {
  height: 30px;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}
.lyric-list li.active{
  color: #fff;
  transform: scale(1.2);
}