/*
https://stackoverflow.com/questions/18456169/show-enlarged-picture-when-mouse-hover-over-an-image
https://jsfiddle.net/ERh62/1/
*/

.imagepop {
  border: none;
  margin: 0 auto;
}
.imagepop:hover {
  -webkit-transform: scale(4);
  -moz-transform: scale(4);
  -o-transform: scale(4);
  transform: scale(4);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
