@charset "utf-8";
/* CSS Document */

.big img {transition: 1s;}
.big img:hover {transform: scale(1.5);}

.zoom {
  transform: scale(.8); /* sets orginal to 80% */
  transition: transform .2s; /* Animation */

}

.zoom:hover {
  transform: scale(1); /* (100% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}