/* Masonry image gallery styling */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery .images {
    gap: 15px;
    max-width: 85%;
    margin: 40px 0;
    columns: 5 310px;
    list-style: none;
  }
  .gallery .images .img {
    display: flex;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
    border-radius: 4px;
  }
  .gallery .images img {
    width: 100%;
    transition: transform 0.2s ease;
  }

  .gallery .images .img:hover img {
    transform: scale(1.1);
  }


  /* Responsive media query code */
  @media screen and (max-width: 688px) {

    .gallery .images {
      max-width: 100%;
      padding: 0 13px;
      margin-top: 20px;
    }
  }
