@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap');


body{
    background-color: antiquewhite;
 
    
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav ul  {
    display: flex ;
    align-items: center;
    list-style: none;
    background-color: black;
    color: white;
}
nav ul li{
    padding: 0 20px;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
}
.logo img{
    width: 50px;
    height: 50px;
}
.logo{
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}
.container{
     height: 70vh;
     font-family: 'Ubuntu', sans-serif;
     display: flex;
     background-color: black;
        color: white;
        margin: 20px auto;
        width : 76%;
        border-radius: 22px;
        background-image: url("BackGround.jpg");
        background-size: cover;
        image-resolution: 300dpi;
        image-orientation: from-image;
}
.Bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    background-color: black;
    color: white;
    flex-direction: column;

}
#progressBar{
    width: 80%;
    
}
.icons{
   
    
    justify-content: space-around;
  
    margin-top: 20px;
    
}
.songItemplay{
    font-size: 20px;
    cursor: pointer;
}
.songItems{
    height: 35px;
    display: flex;
    background-color: white;
    color: black;
    width: 90%;
    margin: 20px ;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;

}
.songItems img{
    width:43px;
    margin: 0 7px;
    border-radius: 23px;

}
.timestamp{
    margin: 0 10px;
}
.songInfo{
    position: absolute;
    left: 10vw;
}
.songInfo img{
    opacity: 0;
    transition : opacity 0.4s ease-in;
}
@media screen and (max-width: 1100px) {
  body {
    background-color: red;
  }
}