@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&family=Varela+Round&display=swap');
body{
    background-color: #FFC9FB;

}

*{
    margin:0;
    padding: 0;

}

nav{
    font-family: 'ubuntu', sans-serif;
}

nav ul{
    display: flex;
    align-items: center;
    list-style-type: none ;
    height: 65px;
    background-color: black;
    color: white;
    

}

nav ul li{
    padding: 0 30px;

}

.LoginLogo{
    height: 20px;
    width: 80%;
    align-items: center;
    justify-content: space-around;
}

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

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

.container{
    min-height: 75vh;
    background-color: black;
    color: white;
    font-family: 'Varela Round', sans-serif;
    display: flex;
    width: 70%;
    margin: 23px auto;
    border-radius: 50px;
    padding: 35px;
    background-image: url('bg.jpg');
}

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

.icons{
    margin-top:14px;
}

.icons i{
    cursor: pointer;
}
#myProgressBar{
    width:80vw;
    cursor: pointer;

}

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

.songItem img{
    height: 70px;
    width: 83px;
    margin: 0 8px;
    border-radius: 34px;
}

.timestamp{
    margin: 0 23px;

}

.songItemContainer{
    margin-top: 34px;
}

.songInfo{
    position: absolute;
    left: 10vw;
    font-family: 'Varela Round', sans-serif;
}

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