
body{
  background-color: black;
}

h1{
  color: white;
  font-family: Palatino;
  font-weight: bold;
  text-align: center;
}

/*https://www.w3schools.com/howto/howto_css_image_overlay.asp
https://www.w3schools.com/howto/howto_css_zoom_hover.asp*/


.container {
  position: relative;
  width: 90%;
  height: auto;
}

.image {
  display: block;
  width: 5%;
  height: auto%;
}
.image1 {
  display: block;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #afc8e0;
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.zoom {
  transition: transform .2s; /* Animation */
  width: 50px;
  height: auto;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(5.0); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
