*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins' , sans-serif;
}
body{
    background-color: #0c0c1b;
}
a{
    text-decoration: none;
}
@font-face {
    font-family: IRANSans;
    src: url(/font/IRANSansWeb.woff2);
}

.container{
    background: #333;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.music-player{
    background-color: #0c0c1b;
    width: 400px;
    padding: 25px 35px;
    text-align: center;
    border-radius: 25px;
}

/*nav tags */

nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* circles style */

nav .circle{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background:#fff ;
    color: #d481aa;
    box-shadow:0 5px 10px rgb(255, 26, 0.22);
    cursor: pointer;
}
.song-img{
    width: 300px;
    border-radius: 10%;
    border: 8px solid rgb(31, 14, 14);
    box-shadow: 0 10px 60px rgb(255, 26, 26 , 0.22);
}

.music-player h1{
    font-size: 25px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin-top: 20px;
}

.music-player p {
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

#progress{
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background:#f53192;
    border-radius: 4px;
    cursor: pointer;
    margin: 40px 0;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background: #f53192;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 5px 5px rgb(255 , 26 , 26 , 0.22);
}

.controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.controls div{
    width: 60px;
    height: 60px;
    margin: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #08061a;
    box-shadow: 0 10px 20px rgb(255, 26, 26 ,0.22);
    cursor: pointer;
}
.controls div:nth-child(2){
    transform: scale(1.5);
    background: #f53192;
    color: #fff;
}
#song{
    display: none;
}

/* wave musics */
.wave {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 30px;
  margin-top: 10px;
}

.wave span {
  width: 4px;
  height: 8px;
  background: #ff5fa2;
  border-radius: 10px;
  animation: wave 1s infinite ease-in-out;
  animation-play-state: paused;
}

.wave span:nth-child(1) { animation-delay: 0s; }
.wave span:nth-child(2) { animation-delay: 0.1s; }
.wave span:nth-child(3) { animation-delay: 0.2s; }
.wave span:nth-child(4) { animation-delay: 0.3s; }
.wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: 30px; }
}

/* just open on mobile */

