@import url('https://fonts.googleapis.com/css2?family=Ubuntu&family=Varela+Round&display=swap');
/*Imported ubuntu and varela round font family*/


body{
    background:antiquewhite;
}
*{
    margin: 0;
    padding: 0;

}
nav{
    font-family: 'Ubuntu', sans-serif;
}
nav ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    height:fit-content;
    background-color: black;
    color:white;
}
nav ul li{
    padding: 0 10px;
}
.brand img{
    width:35px;
    height:auto;
    margin: 5px;
    padding:0 5px;
}
.brand{
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
}
.container{
    font-family: 'Varala Round', sans-serif;
    background-color:black;
    color:white;
    width:80%;
    display: flex;
    margin:20px auto;
    border-radius:20px;
    padding:20px;
    /* background-image: url(C:\Users\Amit Verma\Desktop\github site\spotify-clone\image.jpg); */
    background-repeat: no-repeat;
}
.songItem{
    display: flex;
    height:fit-content;
    background-color: white;
    color:black;
    width: 80%;
    justify-content: space-between;
    margin:10px 0;
    align-items: center;
    border-radius:50px;
}

.songItem img{
    width:30px;
    margin:5px 10px;
    border-radius: 50%;
}
.songItemContainer{
    margin-top:20px;
}
.timeStamp{
    margin:0 10px;
}
.timeStamp i{
    cursor: pointer;
}
.bottom{
    height:fit-content;
    width: 100%;
    background-color: black;
    color:white;
    position: fixed;
    bottom:0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

#myProgressBar{
    width:80vw;
    margin-top:10px;
    cursor: pointer;
}

.icons{
    margin:5px 0 10px 0;
}
.icons i{
    cursor: pointer;
    margin:0 15px;
}
.songInfo{
    left:-24vw;
    bottom:20px;
    position:absolute;
    width:80%;
    font-family: 'Varala Round', sans-serif;
}
.songInfo img{
    opacity:0;
    transition: opacity 1s ease-in;
}