/* Enter Your Custom CSS Here */
* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.facecontainer {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 110px;
  margin-bottom: -7px;
}

/* Make the image to responsive */
.faceimage {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.faceoverlay {
  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: 9px;
 /* padding: 5px;*/
  text-align: center;
}
.faceicon {
  position: absolute; 
  bottom: 0;  
  right: 0;
  padding: 5px;
}
/* When you mouse over the container, fade in the overlay title */
.facecontainer:hover .faceoverlay {
  opacity: 1;
}

.signcontainer {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 110px;
  margin-bottom: -6px;
}
.signimage {
  display: block;
  width: 100%;
  height: auto;
}
.signoverlay {
  position: absolute;
}
.signcontainer:hover .signoverlay {
  opacity: 1;
}