body {
  background: linear-gradient(45deg, #0fcb7678, #117be3);
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.music-container h2 {
  color: white;
  font-weight: bold;
}

.music-container .info h4 {
  color: white;
}

.music-container .info .image-song {
  -webkit-animation: rotate 2.5s linear infinite;
          animation: rotate 2.5s linear infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.music-container .music-progress .progress-container {
  height: 5px !important;
  overflow: hidden;
  background-color: #212529;
  cursor: pointer;
}

.music-container .music-progress .progress-container .pg {
  height: 100%;
  background: wheat;
  border-radius: 0.15rem;
  width: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.music-container.play .image-song {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*# sourceMappingURL=style.css.map */