* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}


    /* position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; */

   
    /* background-image: url(./assets/img/cover1.jpg); */
    /* background-size: no-repeat;
    background-position: center;
    background-size: cover; */
    /* filter: blur(10px); */
    /* z-index: -1;
    margin-top: 100px 0; */
  

.wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url(./assets/img/cover1.jpg);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
  /* filter: blur(10px);  */
  z-index: 1;
  margin-top: 100px 0;
}



.player {
    display: flex;
    flex-direction: column;
    align-items: center;
  margin-top: 100px;
  background: #505491;
  /* background-image: url(./assets/img/beyonce1.jpg); */
  border-radius: 30px;

  max-width: 550px;
  width: 103%;
  height: 550px;
  padding: 25px;
  z-index: -2;
}

.cover {
  display: flex;
  justify-content: center;
  width: 476px;
  height: 285px;
  margin: 25px 0;
  .cover_img {
    width: 60%;
    height: 100%;
  }
  .cover_img {
    width: 60%;
    border-radius: 50%;
    &.active {
      animation: rotateAnimation 3s linear infinite;
    }
  }
}
.play img {
  width: 60%;
}
.song {
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  color: rgb(33, 36, 36);
  text-align: center;
  margin: 10px 0;
}
.progress_container {
  background: #e4e9ed;
  border-radius: 5px;
  width: 100%;
  height: 10px;
  margin-top: 35px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  cursor: pointer;

  .progress {
    background: #283c58;
    border-radius: 5px;
    height: 6px;
    /* width: 150px; */
  }
}

.prev img {
  width: 100%;
  height: 40px;
}
.next img {
  width: 100%;
  height: 40px;
}
.play img {
  width: 100%;
  height: 40px;
}
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  .btn {
    cursor: pointer;
  }
}
.timeline-start {
    position: relative;
    height: 50px;
    width: 50px;
    cursor: pointer;
    bottom: -8%;
    left: -45%;
    z-index: 4;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgb(193, 255, 6);;
    align-items: center;
  }

  .timeline-end {
    position: relative;
    height: 50px;
    width: 50px;
    cursor: pointer;
    bottom: -5%;
    right: -50%;
    z-index: 4;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    align-items: center;
    color: rgb(193, 255, 6);
  }

  @media (max-width: 555px) {
    .player {
       
        width: 70vw;
        height: 470px;
      }
    .cover_img {
      width: 50%;
      height: 60%;
    }
    .cover {
      width: 340px;
      height: 200px;
    }
   
  }


@keyframes rotateAnimation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

