body{
    background-color: antiquewhite;

  }
  
*{
    margin: 0;
    padding: 0;
}
nav{
    font-family: Arial, Helvetica, sans-serif;
}
nav ul{
    display:flex;
    align-items: center;
    list-style-type: none;
    height: 65px;
    background-color: black;
    color: whitesmoke;

    
}
nav ul li{
    padding: 0 12px;
}
.brand img{
    width: 44px;
    padding: 0 8px;
}
.brand{
    display: flex;
    align-items: center;
    font-weight: bolder;
     font-size: 1.3rem;
}
.container{
    min-height: 72vh;
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    width: 80%;
    margin: 23px auto;
    border-radius: 12px;
    padding: 34px;
    background-image: url(bg2.jpg);

}
.bottom{
    position: sticky;
    height: 130px;
    background-color: black;
    color: white;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    


    
}
.icons{
    margin-top: 14px;
}
.icons i{
    cursor: pointer;
}

#myprogressbar{
    width: 80vw;
    cursor: pointer;
-moz-osx-font-smoothing: initial !important;

}
.songitemcontainer{
    margin-top: 74px;
}
.songitem{
    height: 50px;
    display: flex;
    background-color: white;
    color:black;
    margin: 12px 0;
    border-radius: 34px;
    justify-content: space-between;
    text-align: left;
    font-weight: bolder;
    background-image: url(bg4.png);
    

}
.songitem img{
    width: 100px;
    margin:0 23px;
    border-radius: 34px;
    justify-content: space-between;
    align-items: center;
    

}
.timestamp{
    margin:0 23px;
}
.timestamp i{
    cursor: pointer;
}
.songinfo{
    position: absolute;
    left: 10vw;
}
.songinfo img{
    opacity: 0;
    transition: 0.8s;
}
/* CSS for the Song Posters Section */
.song-posters {
    margin-top: 30px;
}

.song-posters h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.poster-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.poster-container img {
    width: 150px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.poster-container img:hover {
    transform: scale(1.05);
}
/* CSS for the Language Selection Section */
.language-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f0f0;
    text-align: center;
    background-image: url(bg.jpg);
}

.language-section h2 {
    font-size: 40px;
}

.language-list {
    list-style-type: none;
    padding: 0;
}

.language-list li {
    display: inline;
    margin-right: 10px;
}

.language-list a {
    text-decoration: double;
    color: whitesmoke;
    font-weight: bold;
}

.language-list a:hover {
    color:blue;
}
