*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body{
  font-family: sans-serif;
}

.nav-item a{
    color: white;
    font-family:sans-serif;
    font-size: 0.8rem;
    text-decoration: none;

}


.nav-item li a{
  color: white;
  font-family:sans-serif;
  font-size: 0.8rem;
  text-decoration: none;

}


.navbar-nav li a:hover{
    color:burlywood;
    font-family:sans-serif;
    font-size: 0.8rem;
    background-color: #3e8e41;
    color: white;
    transition: 0.1\s;


}




.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
  }
  
  .fa:hover {
      opacity: 0.7;
  }
  
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }
  

  .fa-linkedin {
    background: #007bb5;
    color: white;
  }
  
  .fa-youtube {
    background: #bb0000;
    color: white;
  }
  
  .fa-instagram {
    background: #125688;
    color: white;
  }
  

  .fa-snapchat-ghost {
    background: #fffc00;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }
  
  .fa-skype {
    background: #00aff0;
    color: white;
  }
  

  footer h4{
    text-align: left;
    
  }
footer li{ 
  text-decoration: none;
  list-style-type:none;
  text-align: left;
  text-decoration-line: none;

}
footer a{
  list-style: none;
  color: white;
  text-decoration: none;

}
footer a :hover{
  color: green;
  text-decoration: none;
  text-decoration-line: none;
  

}








