body{
    color: #181E19;
}

header{
    font-family: 'Poppins', sans-serif;
    padding: 0 10%;
    width: 100%;
    height: 60vh;
    background:  linear-gradient(to right, rgba(19, 26, 69, 0.7), rgba(0,0,0,0.9)), url("../images/photographer.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

header h1{
    color: #fff;
    font-size: 4rem;
    text-transform: capitalize;
    margin: 3rem 0 0 0;
}

header .underline{
    content: "";
    width: 50px;
    height: 2px;
    background-color: #1ECD56;
    display: inline-block;
}

/*widows*/
.widows, .new-auditorium, .outreach{
    margin: 2rem auto; 
    padding: 2rem 10%;
  }

.widows h1, .new-auditorium h1, .outreach h1{
    font-size: 40px;
    margin: 1rem 0;
}

.gallery{    
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 15px;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery__item--2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery__item--3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}

.gallery__item--4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}

.gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
}

.gallery__item--6 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}

/*Need Prayer*/
.prayer-need{
    width: 100%;
    height: 300px;
    padding: 4rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url("../images/prayer.png");
    background-size: cover;
    color: #F0F0F0;
}

.prayer-need .underline{
    width: 40px;
    height: 2px;
    background-color: #1ECD56;
    display: block;
}

.prayer-need h2{
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
}

.prayer-need p{
    font-family: 'Noto Sans', sans-serif;
}

.prayer-need h3{
    font-size: 24px;
    font-weight: 600;
}


@media screen and (max-width: 1000px){
    header{
        padding: 0 5%;
    } 

    .prayer-need{
        padding: 4rem 5%;
    }

    .widows, .new-auditorium, .outreach{
        padding: 2rem 5%;
      }

}

@media screen and (max-width: 750px){
    header h1{
        font-size: 2.5rem;
    }

    .widows h1, .new-auditorium h1, .outreach h1{
        font-size: 25px;
    }

    .prayer-need h2{
        font-size: 30px;
    }

    .prayer-need{
        text-align: center;
    }

}

@media screen and (max-width: 400px){
    header h1{
        font-size: 2rem;
    }

    header .underline{
        content: "";
        width: 30px;
        height: 2px;
        background-color: #1ECD56;
        display: inline-block;
    }

}