* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.music-player {
  background: #59f17a;
  width: 400px;
  padding: 25px 35px;
  text-align: center;
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  color: #58f531;
  box-shadow: 0 5px 10px rgba(26, 255, 37, 0.22);
}

.song-image {
  width: 220px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 10px 60px rgba(26, 255, 37, 0.22);
}

.music-player > h1 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  margin-top: 20px;
}

.music-player > p {
  font-size: 14px;
  color: #333;
}

#progress {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #2abe05;
  border-radius: 4px;
  cursor: pointer;
  margin: 40px 0;
}

#progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #48f531;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 5px 5px rgba(26, 255, 37, 0.22);
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls > div {
  width: 60px;
  height: 60px;
  margin: 20px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #48f531;
  box-shadow: 0 10px 20px rgba(26, 255, 37, 0.22);
  cursor: pointer;
}

.controls > div:nth-child(2) {
  transform: scale(1.5);
  background: #2abe05;
  color: #fff;
}
