body {
  background-image: url("beach_v03.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgb(197, 157, 89);
  color: rgb(255, 204, 121);
  margin: 0;
  font-family: 'Amatica SC', 'Arial Narrow', Arial, sans-serif;
  font-size: 3.2em;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h2 {
  position: fixed;
  top: 10%;
  left: 5%;
  margin: 0;
  padding: 0;
}

.text-box {
  font-size: 10pt;
  font-family: 'Amatica SC', 'Arial Narrow', Arial, sans-serif;
  position: absolute;
  top: 20%;
  left: 8.5%;
  transform: translate(-50%, -50%);
}
span {
  display: inline-block;
  font-weight: bolder;
  animation: mover 6s linear infinite;
  color: white;
}
@keyframes mover {
  0%   { text-shadow: 0 0 30px rgba(0,0,0,0);    transform: translateY(0); }
  50%  { text-shadow: 0 0 30px rgba(0,0,0,0.30); transform: translateY(30px); }
  100% { text-shadow: 0 0 30px rgba(0,0,0,0);    transform: translateY(0); }
}
span:nth-child(1)  { animation-delay: .5s; }
span:nth-child(2)  { animation-delay: 1s; }
span:nth-child(3)  { animation-delay: 1.5s; }
span:nth-child(4)  { animation-delay: 2s; }
span:nth-child(5)  { animation-delay: 2.5s; }
span:nth-child(6)  { animation-delay: 3s; }
span:nth-child(7)  { animation-delay: 3.5s; }
span:nth-child(8)  { animation-delay: 4s; }
span:nth-child(9)  { animation-delay: 4.5s; }
span:nth-child(10) { animation-delay: 5s; }
span:nth-child(11) { animation-delay: 5.5s; }
span:nth-child(12) { animation-delay: 6s; }
span:nth-child(13) { animation-delay: 6.5s; }
span:nth-child(14) { animation-delay: 7s; }
span:nth-child(15) { animation-delay: 7.5s; }

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.box {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 8px;
  margin: 10px;
  box-shadow: 3px 4px 3px rgba(0, 0, 0, 0.2); 
}

.box img {
  transition: all 0.7s linear;
}

.hover-img {
  width: 800px !important;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -30px !important;
}

.box:hover img { opacity: 0; }
.box:hover .hover-img { opacity: 1; }


.container-5 .box:hover img.original_img_5 {
  opacity: 1 !important;
  pointer-events: auto;
}

.container-1 { position: fixed; top: 25%; left: 5%; }
.container-2 { position: fixed; top: 20%; left: 65%; }
.container-3 { position: fixed; top: 5%;  right: 50%; }
.container-4 { position: fixed; top: 50%; right: 50%; }
.container-5 { position: fixed; top: 10%; right: 5%; }

.original_img_1,
.original_img_2,
.original_img_3,
.original_img_4,
.original_img_5 {
  position: absolute;
  top: 0;
  left: -30px !important;
}

.original_img_1 { width: 300px !important; }
.original_img_2 { width: 500px !important; }
.original_img_3 { width: 500px !important; }
.original_img_4 { width: 500px !important; }
.original_img_5 { width: 300px !important; }
