@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: aliceblue;
}
nav{
    height:10%;
    
    border:2px solid black;
    /* margin: 2px; */
}
.logo{
    height:50px;
    width:50px;
    border-radius: 10px;
    padding-left: 2px;
    padding-right: 5px;
}
nav ul{
    list-style-type: none;
    display: flex;
    background-color: black;
    color:white;
    gap: 15px;
    align-items: center;
    padding:3px;
}
nav li:hover{
    color:lightblue;
}
.txt{
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size:1.2rem ;
    padding: 2px;
}
.container{
    min-height: 70vh;
    color:white;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: black;
    display: flex;
    margin: 20px auto;
    width:70%;
    border-radius: 15px;
    padding:30px;
    
}
.bottom{
    position:sticky;
    height:100px;
    bottom: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#myProgressBar{
   width: 75vw;
  
}
.icons{
    color:white;
    font-size: 1.5rem;
    margin-top:10px;
}
.icons i{
    cursor: pointer;
}
.songItemCont{
    margin-top: 70px;
}
.songItem{
    height:50px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    color:black;
    background-color:gainsboro;
    /* width:80%; */
    margin:12px 0 ;
    border-radius: 35px;
}
.songItem img{
    width: 43px;
    margin: 0 23px;
    border-radius: 34px;
}


.timestamp{
    margin: 0 23px;

}
.timestamp i{
    cursor: pointer;
}
.songInfo{
    position: absolute;
    left:12vw;
    color: white;
}
.songInfo img{
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

@media only screen and (max-width: 1100px) {
    body {
      background-color:lightcyan;
    }
  }
