@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

body {
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.container {
  width: 400px;
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #ffe5e6;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar i {
  font-size: 16px;
  color: #ff53a0;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.song-details {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.song-details .song-img {
  width: 170px;
  height: 170px;
  border: 5px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.song-details .song-name {
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  color: #444;
  margin-bottom: 10px;
}
.song-details .artist-name {
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  color: #444;
}
.song-buttons {
  display: flex;
  flex-direction: column;
}
.song {
  display: none;
}
.song-buttons .progress-bar {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background-color: #f53192;
  border-radius: 5px;
  margin: 30px 0;
  cursor: pointer;
}
.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #f53192;
  background-color: #fd99c6;
  border: 4px solid #fd99c6;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
}

.controll-btns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.controll-btns .fa-backward,
.controll-btns .fa-forward {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #ff53a0;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.controll-btns .pause-play-btn {
  font-size: 30px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #ff53a0;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
