*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font: 14px sans-serif;
  background: #000;
}

@keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@-webkit-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@-moz-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@-ms-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}
@-webkit-keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}
@-moz-keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}
@-ms-keyframes move-clouds-back {
  from {
    background-position: 0;
  }
  to {
    background-position: 10000px 0;
  }
}

.stars, .twinkling, .clouds {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  width: 100%; height: 100%;
  display: block;
}
.stars {
  background: #000 url(img/stars.png) repeat top center;
  z-index: 0;
}
.twinkling {
  background: transparent url(img/twinkling.png) repeat top center;
  z-index: 1;
  -moz-animation: move-twink-back 400s linear infinite;
  -ms-animation: move-twink-back 400s linear infinite;
  -o-animation: move-twink-back 400s linear infinite;
  -webkit-animation: move-twink-back 400s linear infinite;
  animation: move-twink-back 400s linear infinite;
}
.clouds {
  background: transparent url(img/clouds.png) repeat top center;
  z-index: 3;
  -moz-animation: move-clouds-back 400s linear infinite;
  -ms-animation: move-clouds-back 400s linear infinite;
  -o-animation: move-clouds-back 400s linear infinite;
  -webkit-animation: move-clouds-back 400s linear infinite;
  animation: move-clouds-back 400s linear infinite;
}


#container {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 530px;
  padding: 0 15px;
  z-index: 4;
}


h1 {
  border: 7px double rgba(255, 255, 255, .7);
  border-radius: 200px;
  padding: 8px;
  margin: 0;
  height: 102px;
  color: #FFF;
  font-size: 54px;
  line-height: 72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 0 10px rgba(173, 255, 47, .8);
  background: rgba(255, 255, 255, .2);
  white-space: nowrap;
}

h1 .header-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

h1 .flower {
  color: pink;
  text-shadow: none;
}

.content {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, .8);
  border-radius: 15px;
}

.content audio {
  width: 100%;
  margin-bottom: 15px;
}

.content .playlist {
  width: 100%;
  margin: 0;
  border-top: 1px solid #EEE;
  padding: 15px 0 0;
}

.content .playlist li {
  display: block;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: none;
}

.content .playlist li.active {
  background: rgba(255, 255, 128, .8);
  transition: .2s ease background;
}

.content .playlist li .download {
  float: right;
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: rgb(130, 165, 30);
}

.content .playlist li .download::before {
  content: "⟱";
}