@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
body{
    background-color: antiquewhite;
    font-family: 'Ubuntu', sans-serif;
}
*{
    padding: 0;
    margin: 0;
}
nav ul{
    display: flex;
    align-items: center;
    height: 48px;
    list-style: none;
    background-color: black;
    color: white;
}
nav ul li{
    padding: 0 12px;
}
 nav ul li img{
   width: 44px;
}
.brand{
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
    padding: 0 8px;
}
nav ul li span{
    padding: 0 6px;
}

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

.songsList h2{
    padding: 10px 20px;
}
.bottom{
    background-color: black;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: sticky;
    
}
.icons{
    margin-top: 14px;
}
.icons i{
    cursor: pointer;
}
   
#myProgressBar{
    width: 80vw;
    cursor:pointer;
}
.songItemContainer{
    margin: 40px 34px;
}
.songItem{
    height: 50px;
    display: flex;
    background-color: white;
    color: black;
   width: 40vw;
    margin: 12px 0;
    justify-content: space-between;
    align-items: center;
    border-radius: 34px;
}
.songItem img{
    width: 43px;
    margin: 0 23px;
    border-radius: 34px;
}
.timeStamp{
    margin: 0 23px;
}
.songInfo{
    position: absolute;
    left: 10vw;
    font-family: 'Varela Round', sans-serif;
}
.songInfo img{
    opacity: 0;
    transition: opacity 1s ease-in;
    width: 50px;
}
@media screen and (max-width:1200px) {
    #myProgressBar{
        margin-top: 1rem;
    }
    .songItem{
        width: 82vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .bottom .songInfo{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 5rem;
        margin-top: 0.7rem;
    }
    .bottom{
        display: flex;
        flex-direction: column;
        height: 132px;
    }
    .songItem{
        font-size: 0.9rem;
    }
    .songItemContainer {
        margin: 22px 4px;
    }
    .songsList h2 {
        padding: 10px 20px;
        text-align: center;
    }
}
