.aboutUsFrame{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center !important;
}

.title {
    font-size: 120%;
    font-family: var(--font);
    text-align: center;
    color: var(--color-green);
}

.text {
    font-size: 70%;
    width: 60%;
    font-family: var(--font);
    text-align:justify;
    color: var(--color-green);
}

.mosque2 {
    width: 100%;
    position: absolute;
    right: 0%;
    bottom: 0rem;
    left: 0%;
    max-width: 100%;
    height: 40%;
    min-height: 150px;
    object-fit: cover;
    border-radius: 30px;
    z-index: -1;
}

.panel {
    background-color: white;
    width: 85%;
    height: 80%;
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: 50%;
    display: flex;
    flex-direction: column; 
    justify-content:flex-start; 
    align-items:center; 
    padding-top: 0px;
    gap: 1rem;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive styling for small screen sizes */
@media screen and (max-width: 1300px) {  
    .text{
        width: 70%;
    }
}

/* Responsive styling for small screen sizes */
@media screen and (max-width: 880px) {  
    .text{
        font-size: 8px;
        width: 80%;
    }

    .title{
        font-size: 14px;
    }
}

/* Responsive styling for small screen sizes */
@media screen and (max-width: 375px) {  
    .text{
        font-size: 7px;
    }

    .title{
        font-size: 10px;
    }
}