*{
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
}
#banner{
    background: linear-gradient(rgba(151, 151, 118, 0.7),#1c5eb4ec), url(img/Unsplash_images_compressed_jpg/uncompressed/pexels-mo-liban-5648177.jpg);
    background-size: cover;background-position: center;
    height:100vh;
}
.logo{
    width: 100px;
    position: absolute;
    top: 3%;
    left:5%
}
.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 280px;
}
.banner-text h1{
    font-size: 95px;
    font-family: 'Kaushan Script', cursiv;
}
.banner-text p{
    font-size: 24px;
    font-style: italic;
}
.banner-btn {
    margin: 70px auto 0;
}
.banner-btn a{
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ff7e5f; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ff7e5f, #feb47b); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color:rgb(53, 52, 54);
}


#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250;
    top: 0;
    background-color: #1c5eb4cb;
    z-index: 2;
    transition: 0.5s;
}
nav ul li{
    list-style: none;
    margin: 50px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}
#menuBtn{
    width: 50px;
    height: 50px;
    background: #1c5eb475;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}
#menuBtn img{
    width: 20px;
    margin-top: 15px;
}
@media screen and (max-width: 770px){
    .banner-text h1{
        font-size: 40px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}

/*--- Gallery ---*/
#banner2{
    background: linear-gradient(rgba(151, 151, 118, 0.7),#1c5eb4ec), url(img/Unsplash_images_compressed_jpg/uncompressed/pexels-mo-liban-5648177.jpg);
    background-size: 30%;
    background-position: center;
    height:20vh;
}
#photogallery{
    margin-top: 80px;
}

div.a1 {
    text-align: center;
    padding-bottom: 10px;
    font-size: medium;
  }

.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 15px;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.container {
  width: 60%;
  margin: 2rem auto; 
}

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

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

.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;
}
a {
    color: #1c5eb4;
  }
a:link {
    text-decoration: none;
  }
a:hover {
    color: #ff7e5f;
  }

/*----Donate----*/
#donate{
  margin-top: 80px;
}

/*----Contact Us----*/
#contact_us{
  margin-top: 80px;
}

