@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Varela+Round&display=swap');

body{
    background-color: black;
}
*{
    margin: 0;
    padding: 0;
}

nav{
    font-family: 'Inter', sans-serif;
}

nav ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 55px;
    background-color: black;
    color: white;
}

nav ul li{
    padding: 0 12px;
}

.brand img{
    width: 46px;
    padding: 0 8px;
}

.brand{
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
    cursor: pointer;
}

.Logo{
    cursor: pointer;
}

.container{
    min-height: 70vh;
    background-color: green;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    margin: 23px auto;
    width: 56%;
    border-radius: 12px;
    padding: 20px;
    background-image: url('bg.jpg');

}

.bottom{
    position: sticky;
    height: 80px;
    background-color: black;
    bottom: 0;
    color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.icons{
    margin-top: 12px;
    cursor: pointer;
}

#myProgressBar{
    width: 82vw;
    text-align: center;
    cursor: pointer;
}

.songItemContainer{
    margin-top: 65px;
}

.songItem{
    height: 40px;
    display: flex;
    background-color: black;
    width: 60%;
    color: white;
    margin: 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
}

.songItem img{
    width: 35px;
    margin: 23px 0;
    border-radius: 50%;
    margin: 0 5px;
}

.timestamp{
    margin: 0 25px;
}

.songInfo{
    position: absolute;
    left: 8vw;
    padding-top: 4px;
    margin-top: 20px;
    font-family: 'Varela Round', sans-serif;

}
.songInfo img{
    opacity: 0;
    transition: opacity 0.5s ease-in;
}