@import url("https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@600&family=Roboto:wght@300;400&display=swap");

@font-face {
  font-family: 'sh_pinscherregular';
  src: url('pixel-webfont.woff2') format('woff2'),
       url('pixel-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: rgb(255, 255, 255);
  font-family: 'sh_pinscherregular', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #FA36C3;
  background-image: linear-gradient(62deg, #FA36C3 0%, #4b163c 100%);
  overflow: hidden;
/* background-color: #FF9A8B;
background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%); */

}
.bg{
    position: absolute;
    top: 450px;
    
}
.bg img{
    width: 600px;
    
}
.bg .girl{
    position: absolute;
    left: 770px;
    bottom: 35px;
    width: 750px;
}
.player {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("images/bg.png");
  
  
}
.wrapper {
  width: 350px;
  height: 500px;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  background-color: white;
  background-image: url("images/wood.gif");
  background-position: center;
  border-style:double;
  border-width: 7px;
  border-color: #FA36C3;
}
.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.track-art {
  margin: 5px auto;
  height: 185px;
  width: 185px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  /* border: 5px ridge rgb(255, 255, 255); */
  /* box-shadow: 0px 6px 5px #ccc;
  box-shadow: 0px 6px 5px rgba(33, 30, 30, 0.701),
    -0px -4px 5px rgba(71, 71, 71, 0.21);
    opacity: 1 */
  
}



.now-playing {
  font-size: 31px;
}
.track-name {
  font-size: 30px;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 1px;
  text-transform: capitalize;
}

.track-artist {
  font-size: 17px;
  text-transform: capitalize;
  font-family: 'sh_pinscherregular', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 1px;
  color: rgb(255, 255, 255);
}
.buttons {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buttons i {
  opacity: 1;
  padding: 13px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}
.buttons i:hover {
  color: #FA36C3;
  scale: 115%;
}
.buttons .playpause-track i {
  font-size: 45px;
}

.slider_container {
  width: 100%;
  margin: 10px auto;
  margin-bottom: 30px;
  position: relative;
}
.current-time,
.total-duration {
  position: absolute;
  color: rgba(255, 255, 255, 1.0);
  font-family: sh_pinscherregular;
  font-size: 23px;
}
.current-time {
  padding-top: 30px;
  left: 0;
}
.total-duration {
  padding-top: 10px;
  right: 0;
}
.seek_slider {
  width: 100%;
  border-radius: 20px;
  appearance: none;
  height: 4px;
  background: #FA36C3;
  transition: opacity 0.2s;
}
.seek_slider::-webkit-slider-thumb {
  appearance: none;
  width: 13px;
  height: 13px;
  background: #FA36C3;
  border: 3px solid #490e38;
  cursor: pointer;
  border-radius: 100%;
}

.rotate {
  animation: rotation 9s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.fa-random {
  margin-right: 5px;
}
.fa-repeat {
  margin-left: 5px;
}