@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.overlaycontainer:hover {

  opacity: 0.5;
  transition: 1s ease;
  background-color: #000;

}


.zoom {
  transition: transform .2s; /* Animation */
  opacity: .80;
}

.zoom:hover {
  opacity: 1;
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
