h1 {color: rgb(239, 240, 216); 
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 5px rgb(29, 42, 5)}

a {color: rgb(76, 149, 197); 
    font-family: 'Comic Sans MS', cursive;
    text-shadow: 2px 2px 5px rgb(5, 14, 42)}

h3 {color: rgb(98, 219, 140); 
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 5px rgb(5, 14, 42)}

p {color: rgb(83, 184, 108); 
    font-family: 'Comic Sans MS', cursive;
    text-shadow: 2px 2px 5px rgb(47, 31, 4)}

/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 50%;
}

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

/* The overlay effect (full height and width) - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #8b0707;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: .6s ease;
}

/* When you mouse over the container, the overlay text will "zoom" in display */
.container:hover .overlay {
  transform: scale(1);
}

/* Some text inside the overlay, which is positioned in the middle vertically and horizontally */
.text {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}