.title {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.images {
  display: flex;
  justify-content: space-around;
}

.image-container {
  height: 500px;
  width: 800px;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
}

.transition-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.transition-image:hover {
  cursor: pointer;
  opacity: 1;
}

.fade::after {
  content: "The Mountains";
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade:hover::after {
  opacity: 0.5;
}
