  .zoom {
    transition: transform .5s; /* Animation */
    
  }
  
  .zoom:hover {
    transform: scale(1.05);
    /* box-shadow: 10px 10px 5px grey; */
  }