@charset "utf-8";
/* CSS Document */

/* START OF CARD OVER EFFECT CSS */

/* {box-sizing: border-box;} */

.container {
  position: relative;
}

.image {
  display: block;
  height: auto;
}

.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: .3s ease;
  opacity: 0;
  color: white;
  font-size: 15px;
  padding: 7px;
  text-align: center;
}

.container:hover .overlay {
  opacity: 1;
}

/* END OF CARD OVER EFFECT CSS */
