@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
body{
    background-color: antiquewhite;
}
*{
    margin: 0;
    padding: 0;
}
nav{
font-family: 'ubuntu',sans-serif;
}
nav ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 68px;
    background-color: black;
    color: whitesmoke;
}
.brand img{
    width: 44px;
    padding: 0 10px;
    
}
.brand{
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bolder;
}
li{
    padding: 0 12px;
}
.container{
    min-height: 70vw;
    background-color: black;
    color: wheat;
    font-family: 'varela round',sans-serif;
    display: flex;
    margin: 23px auto;
    width: 80%;
    border-radius: 12px;
    padding: 23px;
    background-image: url("oip.jpg");
}
.bottom{
    position: sticky;
    background-color: black;
    color: white;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.icon{
    margin-top: 24px;
}
#myProgressBar{
    width: 80vw;
    cursor: pointer;
    
}
.songContainer{
    margin-top: 64px;
}

.songItem{
    height: 40px;
    background-color: white;
    color: black;
    width: 160%;
    margin: 12px 0;
    display: flex;
    justify-content:space-around;
    align-items: center;
    border-radius: 34px;
 
}
.songItem img{
    width: 33px;
    margin: 0 23px;
}
.timeStamp{
    padding: 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;
}
@media only screen and (max-width: 1100px) {
    body {
      background-color: red;
    }
  }