@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&family=PT+Sans&display=swap');

body{
    background-color: antiquewhite;
}
*{
    margin: 0;
    padding: 0;
}
nav ul{
    background-color: black;
    display: flex;
    color: white;
    align-items: center;
    font-family: 'lato';
    
}
nav ul li{
    list-style: none;
    padding: 5px;
    margin: 5px;
}

.logo{ 
    height: 25px;
    margin-right: 10px;
}
.brand{
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-weight: bolder;
    font-size: 1.3rem;
}
.container{
    min-height: 72vh;
    background: #000;
    color: white;
    font-family: 'PT sans';
    display: flex;
    margin: 23px auto;
    width: 70%;
    border-radius: 12px;
    padding: 12px;
    background-image: url(images/bg.jpg);
    border-radius: 34px;


}
.bottom{
    position: sticky;
    height: 130px;
    background-color: black;
    color: white;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.songItem{
    height: 50px;
    display: flex;
    background-color: white;
    width: 80%;
    color: black;
    margin: 12px 0;
    justify-content: space-between;
    align-items: center;
    border-radius: 34px;
}
.songItem img{
    width: 43px;
    margin: 0 23px;
    border-radius: 34px;
}
.icons{
    margin-top: 12px;
    cursor: pointer;
}
#myProgressbar{
    width: 80vw;
    cursor: pointer;
}
.timestamp{
    margin: 0 23px;
}
.songinfo{
    position: absolute;
    margin-top: 25px;
    left: 10vw;
}
.songinfo img{
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.cursor{
    cursor: pointer;
}
