.homepagetext1 {
    color: var(--color-green);
    text-align: center;
    font-size: 200%;
}

.homepagetext2 {
    font-weight: var(--font-semi-bold);
    font-size: 100%;
    text-align: center;
    color: var(--color-gray);
}

.homeButtons{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px; 
}

.vector-icon{
    width: 15%;
    height: 15%; 
    min-height: 35px; 
    min-width: 35px; 
}

.livesermonframe, .previoussermonsframe{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px; 
    background-color: transparent;
    justify-content: center;
    font-size: 80%;
    color: var(--color-green);
}

.livesermonbutton, .previoussermonsbutton {
    width: 40%;
    max-width: 200px;
    min-width: 110px;
    min-height: 80px;
    box-shadow: 0px 4px 4px var(--color-green);
    border-radius: 1rem;
    border: 3px solid var(--color-cadetblue);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: white;
    justify-content: center;
    padding: 1rem 1rem 1rem 1rem ;
    cursor: pointer;
    text-align: center;
}

/* Hover effect for buttons */
.livesermonbutton:hover,.previoussermonsbutton:hover{
    box-shadow: 0 4px 24px var(--color-green);

 }
/* Hover effect for sermon frames */
.livesermonframe:hover,.previoussermonsframe:hover{
    color: var(--color-cadetblue);
 }

.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 {
    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: 50px;
    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: 390px) {  
    .homepagetext2{
        font-size: 14px;
        min-width: 80% !important;
    }

    .homepagetext1{
        font-size: 24px;
    }
    .mosque2 {
        height: 30% !important;
    }
}

/* Responsive styling for small screen sizes */
@media screen and (max-width: 900px) {  
    .panel{
        gap: 1rem !important;
    }
    .homepagetext2 {
        min-width: 70%;
    }
    .mosque2 {
        height: 30% !important;
    }
}

/* Responsive styling for large screen sizes */
@media screen and (max-width: 2400px) {  
    .panel{
        gap: 2rem;
    }
    .homepagetext2 {
        width: 50% !important;
    }
    .mosque2 {
        height: 40%;
    }
}