@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; 
    padding-top:65px;
    padding-bottom: 120px;
    width: 100%;
    overflow: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav{
    font-family: 'Ubuntu', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;  
}

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

nav ul li{
    padding: 0 12px;
     cursor: pointer;
}
.brand img{
    width: 44px;
    padding: 0 8px;
}

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

.container{
   height: calc(100vh - 185px);
   background-color: black;
   color: white;
   font-family: 'Varela Round', sans-serif;
   display: flex;
   margin: 0 auto;
   width: 70%;
   border-radius: 12px;
   padding: 40px 20px;
   background-image: url('bg.jpg');
   background-size: cover;
   background-position: center;
   overflow: hidden;
}

.bottom{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    z-index: 1000;
}

.icons{
    margin-top: 14px; 
}
.icons i{
    cursor: pointer;
}

#myProgressBar{
    width: 80vw; 
    cursor: pointer;
}

.songItemContainer{
    height: 100%;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
}

.songItem{
    height: 35px;
    display: flex;
    background-color: white;
    font-size: 0.9rem;
    color: black;
    margin: 4px 0;
    padding: 0 8px;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}

.songItem img{
    width: 32px;
    margin: 0 3px;
    border-radius: 50%;
}

.timestamp{
    margin: 0 23px;
}

.timestamp i{
    cursor: pointer;
}

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

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

