html {
  height:100%;
  background: white;
}

body{
  margin:0;
  padding:0;
  background: #FFFFFF;
  height:100%;
  font-family: "Montserrat", sans-serif;
}
h1 {
  font-size: 45px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 8px;
}
h3 {
  font-size: 25px;
}
h4 {
  font-size: 35px;
  text-align: center;
  color: #C6C6C6;
  margin-top: -3px;
}

#wrapper {
  position:relative;
  width:100%;
  height:100%;
}

#clouds{
  background:url("../images/clouds-band01.png") repeat-x 0 bottom #4A90E2; 
  width:100%;
  height:100px;
  min-height:610px;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
  -webkit-transform:translate3d(0,0,0.01);
  transform:translate3d(0,0,0.01);
}

.logo {
  background-image: url("../images/GWlogo@2x.png");
  background-repeat: no-repeat;
  background-size: 200px 97px;
  background-position: center center;
  width: 230px;
  height: 100px;

}

.textarea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px;
  max-width: 800px;
  margin: auto;

}

.subline {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01px;
  color: #FFFFFF;
  width: 600px;
  text-align: center;
  margin-top: -15px;

}

.under {
  max-width: 800px;
  letter-spacing: -0.01px;
}

.airplaneanimate {
  position: absolute;
  top: 530;
  left: -200vw;
  background-image: url("../images/airplane.png");
  width: 1580px;
  height: 29px;
  opacity: 80%;
  transform: translateX(-10vw);
  animation-name: example;
  animation-duration: 75s;
  animation-iteration-count: 1;
  animation-delay: 1s;

}

@keyframes example {
  from  {transform: translateX(-10vw);}
  to {transform: translateX(1000vw);}
}



@media only screen and (max-width: 424px) {
    .airplaneanimate  {
      left: -500vw;
      top: 560;
    }
    h1 {
      font-size: 28px;
      margin-bottom: 8px;
    }
    h4 {
      font-size: 23px;
      margin-top: -3px;
    }
}
