.brand img{
  width: 44px;
  padding: 0 8px;
}

nav ul li{
  padding: 0 12px;
}
body{
  background-color: antiquewhite;
}
*{
  margin: 0;
  padding: 0;
}

nav{
  font-family: Arial, Helvetica, sans-serif;
}

nav ul{
  display: flex;
  align-items: center;
  list-style-type: none;     /*used to remove bindhu*/
  height: 70px;
  background-color: black;
  color: white;


}

.brand{
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.bottom{
  position: sticky;
  height: 130px;
  background-color: black;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-direction: column;
}

.icons{
  margin-top: 14px;
  cursor: pointer;
}

.container{
  min-height: 72vh;  /*works same as that of margin*/
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  width: 70%;
  margin: 23px auto;   /* auto- make the element center(left-right)*/
  border-radius: 12px;
  padding: 34px;
  background-image: url('img/pexels-eberhard-grossgasteiger-844297.jpg');
  background-repeat: no-repeat;
  background-size: cover;

}


#myProgressBar{
  width: 80vw;
  align-items: center;
  cursor: pointer;
}

.songItem{
  height: 50px;
  display: flex;
  background-color: white;
  color: black;
  margin: 12px 0;
  justify-content: space-between;
  align-items: center;
  border-radius: 34px;

}

.songItem img{
  width: 43px;
  height: 40px;
  margin: 0 23px 0;
  border-radius: 34px;
}

.timestamp{
  margin: 0 23px;
}


.songitemContainer{
  margin-top: 74px;
}

.timestamp i{
  cursor: pointer;
}


.songInfo{
  position: absolute;
  left: 10vw;
  font-family: Arial, Helvetica, sans-serif;
}

.songInfo img{
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.songList{
  position: relative;
  left: 50%;
  top: 50%;
  translate: -50% 0%;

}
.song-name{
    text-wrap: nowrap;
}
@media (max-width: 768px) {
  .songInfo{
    margin-top:10px;
    position: relative;
    left: 0 ;
  }

}