.loading, .loading2 {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 100pt;
  text-align: center;
  height: 230px;
  line-height: .9;
  vertical-align: bottom;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  display: block;
}
.loading2 {
  top: 240px;
}
.wave {
  background-image: url("https://conference.ifas.ufl.edu/flooding/images/water.png");
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px rgba(255, 255, 255, .2);
  animation: wave-animation 1s infinite linear, loading-animation 10s linear forwards;
  background-size: 350px 100px;
  background-repeat: repeat-x;
  opacity: 1;
}
.wave2 {
  background-image: url("https://webdevtrick.com/wp-content/uploads/water-wave.png");
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px rgba(255, 255, 255, .2);
  animation: wave-animation 1s infinite linear, loading-animation 10s linear forwards;
  background-size: 350px 100px;
  background-repeat: repeat-x;
  opacity: 1;
}

#divHeaderLine2 h2 {
font-size: 25pt;
}
	
#divHeaderLine2 h2 span{
letter-spacing: 15pt;
}
 
@keyframes wave-animation {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 350px bottom;
  }
}
@keyframes loading-animation {
  0% {
    background-size: 350px 0px;
  }
  100% {
    background-size: 350px 350px;
  }
}
@media (max-width: 1050px) {
	
  .loading, .loading2 {
    font-size: 30pt;
	height: 75px;
  }
	
  #divHeaderLine2 h2 {
    font-size: 15pt;
	margin-top: 0px;
  }
	
  #divHeaderLine2 h2 span{
    letter-spacing: 8pt;
  }
	
}