body {
    font-family: "El Messiri", sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    height: fit-content;
    min-height: 100vh;
    background: url('mosque.jpg') no-repeat center bottom fixed;
    background-size: cover;
    color: white;
}

h1{
    font-family: "El Messiri", sans-serif;
    color: white;
    font-size: 3rem;
}

button{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: solid 2px white;
    color: white;
    height: 3rem;
    width: 3rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover{
    transform: scale(1.05);
}

button:active{
    transform: scale(0.95);
}

a{
    color: sandybrown;
}

.hadith-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.hadith-box {
    width: 60%;
    padding: 15px;
    font-size: 1.2em;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    color: white;
}

.arabic {
    font-size: 1.2em;
    direction: rtl;
    text-align: right;
    font-family: 'Noto Naskh Arabic', sans-serif;
}

@media only screen and (max-width: 480px){
    .hadith-box{
        width: 80%;
        font-size: 1.1rem;
    }
    body {
        background-attachment: scroll;
    }
}