@import url("https://fonts.googleapis.com/css2?family=Fontdiner+Swanky&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Pacifico&display=swap");

body {
    background-color: antiquewhite;
}
* {
    margin: 0;
    padding: 0;
}
nav {
    font-family: "Fontdiner Swanky", "Pacifico";
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 50px;
    background-color: black;
    color: white;
}
nav ul li {
    padding: 0 12px;
}
.brand img {
    width: 42px;
    padding: 0 8px;
}
.brand {
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
}
.container {
    min-height: 60vh;
    background-color: black;
    color: white;
    font-family: "Fontdiner Swanky", "Pacifico";
    width: 70%;
    display: flex;
    border-radius: 12px;
    margin: 22px auto;
    padding: 34px;
    background-image: url(background.jpg);
    
}
.bottom {
    height: 85px;
    position: sticky;
    color: white;
    background-color: black;
    display: flex;
    bottom: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.icons{
    margin-top: 14px;
}
.icons i{
    cursor: pointer;
}

#myProgressBar{
    cursor: pointer;
    width: 80vw;
}
.songItemContainer {
    margin-top: 64px;
}
.songItem{
    display: flex;
    height: 50px;
    color: black;
    background-color: white;
    margin: 12px 0;
    
    align-items: center;
    justify-content: space-between;
    border-radius: 34px;
}
.songItem img {
    width: 43px;
    margin: 0 23px;
    border-radius: 34px;
}
.timestamp {
    margin: 0 23px;
}
.timestamp i {
    cursor: pointer;
}
.songInfo {
    position: absolute;
    left: 10vw;
    font-family: "Pacifico";
}
.songInfo img {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
@media only screen and (max-width:1100px){
    body{
        background-color: red;
    }
}