* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.containerimg {
  position: relative;
  width: 30%;
  max-width: 50%;
 
  float:left;
  margin-left:10%;
  margin-top: 9%;
  margin-right: 5%;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.containerimg:hover .overlay {
  opacity: 1;
  
}

.image:hover{
    
    -webkit-filter: blur(3px); /* Safari 6.0 - 9.0 */
    filter: blur(3px);
}

