*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5f7a61;
}


.music-player{
  width: 350px;
  height: 550px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  overflow: hidden;
  color: white;
}


.cover {
  position: relative;
  display: block;
  margin: 40px auto;
  width: 20%;
  height: 20%;
  border-radius: 2%;
  background-image: url('razz/razzcover.png');
  background-size: cover;
}

.song-slider{
  width: 100%;
  position: relative;
}

.seek-bar {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  cursor: pointer;
}

.seek bar::-webkit-slider-thumb {
  -webkit-appearance: none; 
  -moz-appearance: none;
  /* i wanna see if i can change this to a pixel image!! */
}  


.controls {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 20px;
}

.play-btn{
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: red;
  cursor: pointer;
}

.play-btn span{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
  width: 10px;
  height: 30px;
  border-radius: 2px;
  background: blue;
  transition: .5s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.play-btn span:nth-child(2){
  left: 55%;
  transform-origin: center;
}

.play-btn.pause span:nth-child(2){
  transform: translateY(-50%) scaleY(0);
}

.play-btn.pause span:nth-child(1){
 width: 35%;
 left: 53%;
 transform: translate(-50%, -50%);
 border-radius: 0;
 clip-path: polygon(0 0, 100% 50%, 100% 50%, 0% 100%);
}





.song-name, .artist-name{
  text-align: center;
}

.song-name {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 500;
}

.artist-name {
  font-size: 30px;
}

.current-time, song-time{
  font-size: 14px;
}
  .song-time {
    position: absolute;
    right: 0;
  }



