*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Open Sans',sans-serif;

} 


:root{
    --backGround:rgb(43, 58, 70);
    --white:#fff;
    --tanColor:rgb(207, 165, 123);
}

body{
    background:var(--backGround);
    behavior:'smooth';
}

/* Header Style */

.details{
    display: none;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 5px;

}
.details .text{
    margin-top: 30px;
    font-size: 35px;
    color:var(--white);
    text-align: center;
}
.details .playerr{
    display: none;

} 

/* Buttons and Icons Style */

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin: 10px;
}

.buttons i{
    font-size: 15px;
    color:var(--backGround);
}

.buttons .icon:not(:nth-child(1)){
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(216, 191, 216);
    transition: all 0.3s;
    background:var(--white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.home i{
    position: absolute;
    top: 7px;
    left: 7px;
    color:tan;
    transition: 0.2s;
    font-size: 17px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}




.buttons .icon:hover{
    background: rgb(59, 77, 92);
    cursor: pointer;
} 

.icon:hover i{
    color: var(--white);
}

/* Container Style */

.contanier{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    margin-top: 10px;
}

h2{
    margin-top: 15px;
    font-size: 45px;
    font-weight: bold;
    color:rgb(216, 211, 216);
    text-align: center;
}

.content div{
    width: 100%;
    height:100%;
    background: transparent;
    border-radius: 5px;
    border: 2px solid rgb(182, 177, 182);
    margin-bottom: 15px;
    margin-top: 5px;
    padding: 10px;
    text-align: right;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.5s ease;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
}

.content div:nth-child(1){
    transform: translateY(0px);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.content div:nth-child(2){
    transform: translateY(0px);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.content div:nth-child(3){
    transform: translateY(0px);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.content div:nth-child(4){
    transform: translateY(0px);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.content div:nth-child(5){
    transform: translateY(0px);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.content div.active{
    transform: translateY(0px);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.content div:hover{
    
    background: rgb(36, 49, 63);

}

.content .surahContent h3{
    font-size: 25px;
}


.content div h3{
    text-align: center;
    color: var(--tanColor);
    font:20px bold italic 'Segoe UI';
}
.content div p{
    color:var(--white);
    text-align: center;
    margin-top: 5px;
    font: italic 15px bold;

}


/* Surah displaying */

.surahShow{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    width: calc(100%  - 20px);
    padding: 10px;
    color: tan;
    border: 1px solid thistle;
    border-radius: 5px;
    letter-spacing: 1.1px;
    line-height: 65px;
    transition: all 0.3s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.surahShow h3{
    
    color:rgb(197, 191, 182); 
    position: relative;
}
.surahShow h3::after{
    position: absolute;
    right: -35px;
    top: 35px;
    content:'';
    width: 25px;
    height: 1px;
    background: var(--white);


}

.surahShow h3::before{
    position: absolute;
    left: -35px;
    top: 35px;
    content:'';
    width: 25px;
    height: 1px;
    background: var(--white);


}


.up{
    position: fixed;
    bottom: 1px;
    right: -30px;
    width: 30px;
    height: 30px;
    text-align: center;
    color:var(--backGround);
    background:var(--tanColor);
    border-radius: 4px;
    font-weight: bold;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
}

.up.show{
    right: 2px;
}


@media screen and (max-width:470px) {
    
    .content div{
        width: 300px;
        height: 120px;
        
    }
    h2{
        margin-top: 35px;
    }

    .details .text{

        font-size: 20px;
        
    }
    

    .content div:nth-child(5){
        transform: translateY(0px);
        opacity: 0;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
    .content div:nth-child(5).active{
        transform: translateY(0px);
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}


@media screen and (min-width:472px),(max-width:699) {
    
        .content div{
            width: 450px;
            height: 120px;
            
        }

    
    
    } 
    


@media screen and (min-width:700px){
    
    .content div{
        width: 700px;
        height: 100%;
        
    }

} 









