@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
body{
    background-color: antiquewhite;
}
*{
    margin: 0;
    padding: 0;
}
nav{
    font-family: 'ubuntu',sans-serif;
   
}
nav ul {
    display: flex;
    list-style-type: none;
    height: 65px;
    background-color: black;
    color: white;
    align-items: center;
 justify-content: right;
 
}
nav ul li{
    padding: 0 35px;
}
nav ul li:hover{
    color: rgb(3, 177, 3);
    cursor: pointer;
}
.brand img{
    width: 44px;
   padding: 0 8px;
}
.brand{
    display: flex;
align-items: center;
font-weight: bolder;
font-size: 1.3rem;
}
.container{
    min-height: 72vh;
    background-color: black;
    color: white;
    font-family: 'varela round',sans-serif;
    display: flex;
    margin: 23px auto;
    border-radius: 12px;
width: 70%;
padding: 34px;
background-image:url('bg.jpg');
}
.bottom{
    background-color: black;
    position: sticky;
    height: 130px;
    color: white;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#myProgressBar{
width: 80vw;
cursor: pointer;
}
.icons{
    margin-top: 14px;
}
.icons i{
cursor: pointer;
}
.song-item{
height: 50px;
background-color: white;
color: black;
display: flex;

justify-content: space-between;
align-items: center;
margin: 12px 0px;
border-radius: 34px;
}
.song-item img{
width: 43px;
margin: 0 23px;
border-radius: 34px;
}
.timestamp{
    margin: 0 23px;
}
.timestamp i{
    cursor: pointer;
}
.songContainer{
    margin-top: 35px;
}
.songInfo{
position: absolute;
left: 10vw;
font-size: large;
font-family: 'varela round',sans-serif;
}
.songInfo img{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}