body{
    background-color: antiquewhite;
}
*{
    margin: 0;
    padding: 0;
}

nav{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

nav ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 45px;
    background: #000;
    color: aliceblue;

}
nav ul li{
    padding: 0 30px;
    cursor: pointer;
}

.brand img{
width: 45px;
padding:0 8px ;


}

.brand{
    display: flex;
    align-items: center;
    font-size: 1.4em;
    
}
.text{
    font-size: 18px;
}
.container{
    height: 90h;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    width: 70%;
    margin:23px auto;
    border-radius: 12px;
    padding: 35px;
    background-image: url(images/bg123.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.bottom{
    position: sticky;
    height: 90px;
    background: black;
    color: aliceblue;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fa-solid{
    margin-top: 16px;
    cursor: pointer;
}



#myprogressbar{
    width:80vw ;
    cursor: pointer;
}




.songitem{
height: 105px;
display: flex;
flex-wrap: wrap;
width: 60%;
background-color: white;
color: black;
margin:12px 0;
justify-content: space-between;
align-items: center;
border-radius: 35px;
}

.songitem img{
    width: 80px;
    margin: 0 25px ;
    border-radius: 22px;

}

.timestamp{
    margin: 0 25px;
   
}
.timestamp i{ cursor: pointer;}



.icons i {
margin: 10px;


}

.songinfo img{
    position: absolute;
    left: 0;
    bottom:0px;
    height: 30px;
    width: 80px;
}

.songinfo span {
position: relative;

bottom: 5px;


}

.songinfo img{
    opacity: 0;
    transition: opacity 1s ease-in ;
}

@media only screen and (max-width: 600px) {
    .container {
        width: 90%;
        height: 90vh;
        padding: 20px;
    }
    .brand{
        margin-left: 30px;
    }

    .songitem {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .songitem img {
        margin: 10px 0;
    }
    .songitemplay{
        margin-right: 30px;
        padding: 40px;
    }
    .timestamp {
        margin: 10px 0;
    }

    nav ul {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    nav ul li {
        padding: 10px 0;
    }

    .brand {
        justify-content: center;
        font-size: 1.2em;
    }

    .bottom {
        position: relative;
        width: 100%;
        padding: 10px 0;
    }

    #myprogressbar {
        width: 90vw;
    }

    .text {
        font-size: 16px;
        text-align: center;
    }

    .songinfo span {
        font-size: 14px;
    }
}
