@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
body{
    background-color:#deb887;
    font-weight: 400;
    font-style: normal;
}
.navigation{
    background-color: black;
    color: white;
    padding: 10px;

}
.navigation ul{
    display: flex;
    font-size: 16px;
    align-items: center;
}
nav ul li{
    list-style-type: none;
    margin: 0 10px;
}
.logo{
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bolder;
    cursor: pointer;   
}
.logo img{
    filter: invert(100%);
    width: 40px;
    margin: 0 5px ;

}
.container{
    position: relative;
    min-height: 70vh;
    background-color: black;
    color: white;
    width: 75vw;
    margin: 10px auto;
    border-radius: 10px;
    padding: 10px;
    background-image: url('background1.jpeg');
    opacity: 3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    
    
}
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Below the content */
}
.container * {
    position: relative;
    z-index: 2; /* Ensure text stays above the overlay */
}
.container-overlay{
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5; /* Adjust opacity to make it less opaque */
    z-index: 1;
}


.soorah-list h1{
    color: #deb887;
}
.soorah-item{
    height: 45px;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    width: 40vw;
    color: black;
    font-weight: 600;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin: 10px;
    padding: 10px;

}
.soorah-item img{
    width: 35px;
    border-radius: 40px;
}
.soorah-list-play{
    display: flex;
    align-items: center;
}
.soorah-list-play img{
    filter: invert(1);
    margin: 5px;
}
.bottom{
    height: 100px;
    display: flex;
    justify-content: center;
    background-color: black;
    position: sticky;
    bottom: 0;
}
input{
    width: 80vw;
    position: absolute;
    top: 10px;
    cursor: pointer;
}
.icons{
    position: relative;
    top: 30px;
    z-index: 5;

}
.icons img{
    width: 30px;
    cursor: pointer;

}
.soorahinfo{
    width: 85vw;
    display: flex;
    justify-content: space-between;
    color: white;
    position: absolute;
    left: 5vw;
    top: 3vh;
    z-index: 1;
}
.soorahinfo img{
    opacity: 0;
    width: 40px;
    transition: ease-in .4s;
}
.currenttimeduration{
    position: relative;
    top: 25px;
}
@media only screen and (max-width: 600px) {
    body {
      background-color: rgb(141, 141, 32);
    }
      .container{
        position: relative;
        margin: 10px auto;
        border-radius: 10px;
        padding: 10px;
        background-image: url('background1.jpeg');
        opacity: 3;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        
        
    }
    .soorah-item{
        width: 65vw;
    }
    .soorah-list h1{
        font-size: 22px;
        margin: 5px;
    }
    #soorahinfo-first-div{
        margin: 10px -10px;
    }
    
    .currenttimeduration{
        position: relative;
        top: 30px;
    }
  }