
/*


  |One file to load them all

*/

@import url('base/reset.css');
@import url('base/base.css');
@import url('base/typography.css');
@import url('image-projection.css');

.container{
  width: 100%;
  display: block;
  float: left;
  padding: 0 2%;
  margin-top: 1.5em;
}

.wrap{
  float: left;
  display: block;
  position: relative;
}

.overlay{
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
}

.overlay:after{
  content: "Hover me!";
  position: absolute;
  left: 50%;
  top: 50%;

  margin-left: -80px;
  margin-top: -1.5em;

  width: 160px;
  height: 3em;
  line-height: 3em;

  text-align: center;

  background: rgba(255, 255, 255, 0.5);

  font-weight: bold;
}

.overlay:hover:after{
  display: none;
}