html, body { height: 100%; }
body {
  background:radial-gradient(ellipse at center, rgba(0,148,255,1) 0%, rgba(0,82,174,1) 35%, #005265 100%);
}

#bgCanvas{
    width:100%;
    height:100%;
    z-index: 20;
    top:0;
    left:0;
    position: fixed;
    float: top;
	z-index: -2;
}

.ocean { 
  width:100%;
  position: fixed;
  bottom:0;
  left:0;
  background: #015871;
  z-index: -1;
  float: bottom;
}

.wave {
  background: url(../images/wave.svg) repeat-x; 
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%, 100% {
    transform: translate3d(0,-25px,0);
  }
  50% {
    transform: translate3d(0,5px,0);
  }
}