 
 
 @font-face {
  font-family: 'lemon-milk';
  src: url('../fonts/LEMONMILK-Regular.otf');
}
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 60%;
    max-width:60%;
  }
  .modal-header span{
    font-size: 30px;

    
  }
 
  
  /* Add Animation */
  .modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    /* position: absolute;
    top: 15px;
    right: 35px; */
    color: #ffffff !important; 
    /* background-color: rgb(122, 57, 3); */
    padding: 7px;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 2px 1px 30px white;
  }
  
  .close:hover,
  .close:focus {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
  }
  .gallery-img{
    width: 100%;
  }
  .gallery-img img{
    width: 100%;
   }




  @media only screen and (max-width: 502px){
    .gallery-img img{
        width: 100%;
       }
    .modal-content {
        width: 100%;
        max-width: 90% !important;
      }
 }




 