/* style.css */


/* Photo Gallery */
  .photo_gallery {
    margin: 10px 50px;
  }

  .photo_gallery img {
    transition: 0.5s;
    padding: 15px;
    width: 200px;
  }

  .photo_gallery img:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
  }
