/* Zoom on Hover ---  enlarge photo */
/* line 2, app/assets/stylesheets/devise.scss */
.zoom {
  padding: 10px;
  /* Ramka na foto*/
  background-color: gray;
  transition: transform .2s;
  /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

/* line 11, app/assets/stylesheets/devise.scss */
.zoom:hover {
  transform: scale(1.5);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
