@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;700&family=Blinker:wght@300;600&family=Ubuntu:ital,wght@1,300;1,400&display=swap');
body{
    background-color: antiquewhite;
}
*{
    margin: 0;
    padding: 0;
}

nav{
    /* font-family: 'Ubuntu', sans-serif; */
    font-family: 'Blinker', sans-serif;
    font-size: x-large;
    color: white;
    
}

nav ul{
    display: flex;
    list-style-type: none;
    align-items: center;
    height: 65px;
    background-color: black;
    

}
nav ul li{
    padding: 0 12px;
}
nav ul li a{
    padding: 0 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.brand img{
    width: 53px;
    padding: 0 8px;
}
.brand{
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
}
.container{
    min-height: 68vh;
    /* background-color: black; */
    color: white;
    font-family: 'Blinker', sans-serif;
    font-weight: bold;
    display: flex;
    margin: 23px auto;
    width: 70%;
    border-radius: 16px;
    padding: 34px;
    background-image: url('bg1.jpg');
    background-size:cover;

}
.bottom{
    position:sticky;
    height: 134px;
    background-color: black;
    color: white;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    

}
.icons{
    margin-top: 14px;
    cursor: pointer;
}
#myProgressBar{
    width: 80vw;
    cursor: pointer;
}
.songItemsContainer{
 margin-top: 74px;  
 overflow: scroll;
 height: 500px; 
}
.songItem{
height: 65px;
display: flex;
background-color:rgba(255, 255, 255, 0.755);

color: black;
margin: 12px 0;
justify-content: space-between;
align-items: center;
border-radius: 30px;
}
.songItem img{
width: 43px;
margin: 0 12px;
border-radius: 34px;
}
.timestamp{
    margin-right: 10px;
}
.timestamp i{
    cursor: pointer;
}
.songInfo{
    position: absolute;
    left: 10vw;
    font-family: 'Blinker', sans-serif;
}
.songInfo img{
    opacity: 0;
    transition: 0.4s ease-in;
}



@media only screen and (max-width: 450px) {
    .container{
        
        background-image: url('bg2.jpg');
        
    
    }
    h1{
        font-size: 20px;
        color: rgb(246, 202, 146); 
    }
    h3{
        background-color: rgba(0, 0, 0, 0.55);
        color:white;
    }
    .songInfo{
        margin-top: 110px;
        margin-left: 40px;
    }
    .songInfo img{
        margin-right: 20px;
    }
  }