*{
  margin: 0;
  padding: 0;
  font-family: 'poppins', sans-serif;
  box-sizing: border-box;
}
/* .container{
  width: 100%;
  height: 100%;
  background: #333; */
  
.container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
} 
.music-player{
  background: #ffe0e5;
  width: 400px;
  height: 100vh;
  padding: 25px 35px;
  text-align: center;
  padding: 10px;
  }

nav{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
nav .circle{
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  color: #ff70b8;
  box-shadow: 0 5px 10px rgba(255, 26, 26, 0.22);
  cursor: pointer;
}

img{
  width: 200px;
  height: 200px;
  margin-top: 16px;
  box-shadow: 10px 10px 10px rgba(255, 26, 26, 0.3);
  align-items: center;
  border-radius: 100px;
}

a{
  text-decoration: none;
  color: black;
}
.title{
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 22px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bolder;
}
.controls div{
  width: 45px;
  height: 45px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ff70b8;
 cursor: pointer;
}
.song-queue{
  display: block;
}
.song-queue{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
  cursor: pointer;

}

.audio{
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
}
.middle{
  width: 150px;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-left: -40px;
  margin-right: 5px;
}

.favorite::before{
  content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    background-image: url(../media/R.png);
    background-size: cover;
    background-position: center;
    top: 4px;
    right: 30px;
}
.favorite.checked::before{
  background-image: url(../media/red\ heart.png);
}
.favorite{
  width: 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.songname{
  font-size: 16px;
  font-weight: bold;
}
.artistname{
  font-size: 12px;
}
.add-favorite{
  width: 30px;
  height: 30px;
  margin-top: 0;
}
@media screen and (min-width:320px) and (max-width:500px) {
  .music-player{
    height: 100%;
  }
}