@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&family=Varela+Round&display=swap');

*{
    margin: 0;
    padding: 0;
}
body{
    background-color: aliceblue;
}
.navbar{
    font-family: 'Ubuntu', sans-serif;
}
.navbar ul{
    display: flex;
    list-style: none;
    align-items: center;
    height: 60px;
    background-color: black;
    color: white;
}
.navbar ul li{
    padding: 0px 12px;
}
.brand{
    display: flex;
    align-items: center;
    font-weight: bolder;
}
.brand img{
    height: 35px;
    width: 35px;
    padding: 0px 6px;
}
.container{
    display: flex;
    margin: 25px auto;
    width: 70%;
    border-radius: 14px;
    min-height: 63vh;
    padding: 12px;
    font-family: 'Varela Round', sans-serif;
    background-color: black;
    color: white;
    background: url(background1.jpg)no-repeat center center/cover;
}
.bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    bottom: 0;
    height: 95px;
    background-color: black;
    color: white;
}
#myProgressBar{
    width: 80vw;
    cursor: pointer;
}
.icons{
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.icons i{
    cursor: pointer;
    padding: 0px 8px;
}
.songItem{
    height: 50px;
    display: flex;
    background-color: white;
    width: 100%;
    color: black;
    margin: 12px 0px;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}
.songItem img{
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 30px;
}
.timestamp{
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-family: 'Ubuntu', sans-serif;
}
.timestamp i{
   padding: 0px 5px;
   font-size: 24px;
   cursor: pointer;
}
.songInfo{
    display: flex;
    align-items: center;
    position: absolute;
    left: 9vw;
    bottom: 20px;
    font-family: 'Varela Round', sans-serif;
}
.songInfo img{
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
.allSongs{
    height: 53vh;
    margin: 25px 0px;
    overflow-y: auto;
}
.songName{
    font-family: 'Ubuntu', sans-serif;
}

@media only screen and (max-width: 900px){
    .bottom{
        height: 115px;
    }
    .songInfo{
        position: relative;
        left: 0vw;
        bottom: 0px;
        top: 0px;
    }
}