html,
body {
  margin: 0;
  overflow: hidden;
  height: 100%;
  padding: 0;
}

@keyframes animateSprite {
  0% {
    background-position: -600px;
    /* Starting position moving left sprite */
  }

  20% {
    background-position: 0px;
    /* Straight on sprite */
  }

  25% {
    background-position: -200px;
    /* Moving up sprite */
  }

  35% {
    background-position: -400px;
    /* Moving right sprite */
  }

  40% {
    background-position: -400px;
  }

  50% {
    background-position: -200px;
    /* Moving up sprite */
  }

  60% {
    background-position: -0px;
    /* Straight on sprite */
  }

  67% {
    background-position: -600px;
    /* Moving up sprite */
  }

  100% {
    background-position: -600px;
  }
}

@keyframes swim {
  0% {
    transform: translate(0, 0);
    /* Starting position */
  }

  20% {
    transform: translate(calc(-50vw - 100px), 0);
    /* Animate to center of screen */
  }

  25% {
    transform: translate(calc(-50vw - 100px), 0);
    /* Stay at the center for 1 second */
  }

  35% {
    transform: translate(calc(-50vw - 100px), -20vh);
    /* Animate up for 2 seconds */
  }

  50% {
    transform: translate(-25vw, 15vh);
    /* Animate bottom right for 3 seconds */
  }

  60% {
    transform: translate(-25vw, -20vh);
    /* Animate up at right of the screen */
  }

  67% {
    transform: translate(-25vw, -20vh);
  }

  100% {
    transform: translate(calc(-100vw - 300px), 0);
    /* Animate past left past the screen */
  }
}

.ocean {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #003050;
}

.ocean .header-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  left: 5vw;
  position: relative;
}

.ocean .header-logo .logo-wwtc {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

.bubble {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: absolute;
  background-color: white;
  bottom: -30px;
  opacity: 0.2;
  animation: bubble 15s ease-in-out infinite, sideWays 4s ease-in-out infinite alternate;
}

@keyframes bubble {
  0% {
    transform: translateY(0%);
    opacity: 0.06;
  }

  100% {
    transform: translateY(-120vh);
  }
}

@keyframes sideWays {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 200px;
  }
}

.bubble--1 {
  left: 10%;
  animation-delay: 0.5s;
  animation-duration: 16s;
  opacity: 0.2;
}

.bubble--2 {
  width: 15px;
  height: 15px;
  left: 40%;
  animation-delay: 1s;
  animation-duration: 10s;
  opacity: 0.1;
}

.bubble--3 {
  width: 10px;
  height: 10px;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 20s;
  opacity: 0.3;
}

.bubble--4 {
  width: 25px;
  height: 25px;
  left: 40%;
  animation-delay: 8s;
  animation-duration: 17s;
  opacity: 0.2;
}

.bubble--5 {
  width: 30px;
  height: 30px;
  left: 60%;
  animation-delay: 10s;
  animation-duration: 15s;
  opacity: 0.1;
}

.bubble--6 {
  width: 10px;
  height: 10px;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 30s;
  opacity: 0.4;
}

#iframe-container {
  position: relative;
  height: calc(100vh - 55px);
  width: 60vw;
}

#box-container {
  position: relative;
  height: 80vh;
  width: 60vw;
  border: 0;
}

#iframe-container iframe {
  position: absolute;
  top: 0;
  left: 5vw;
  right: 10vw;
  bottom: 10vh;
  max-width: 100%;
  max-height: 95%;
  border: 0;
}

#box-container {
  position: absolute;
  top: 5vh;
  left: 70vw;
  right: 10vw;
  bottom: 10vh;
  max-width: 100%;
  max-height: 100%;
  border: 0;
}

.bubble--7 {
  width: 15px;
  height: 15px;
  left: 90%;
  animation-delay: -7s;
  animation-duration: 25s;
  opacity: 0.3;
}

.bubble--9 {
  width: 20px;
  height: 20px;
  left: 50%;
  bottom: 30px;
  animation-delay: -5s;
  animation-duration: 19s;
  opacity: 0.2;
}

.bubble--10 {
  width: 40px;
  height: 40px;
  left: 30%;
  bottom: 30px;
  animation-delay: -21s;
  animation-duration: 16s;
  opacity: 0.3;
}

.bubble--11 {
  width: 30px;
  height: 30px;
  left: 60%;
  bottom: 30px;
  animation-delay: -13.75s;
  animation-duration: 20s;
  opacity: 0.3;
}

.bubble--11 {
  width: 25px;
  height: 25px;
  left: 90%;
  bottom: 30px;
  animation-delay: -10.5s;
  animation-duration: 19s;
  opacity: 0.3;
}

footer {
  height: 100px;
  background-repeat: repeat-x;
  background-position: center bottom;
  position: absolute;
  left: 5vw;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}

footer img {
  height: 75px;
  margin: 0 40px;
}

@media (max-width: 600px) {
  html,
  body {
    overflow: scroll;
  }

  .ocean {
    height: auto;
    flex-direction: column;
    background: #003050;
  }

  .ocean .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #iframe-container {
    height: 300px;
    width: 100%;
    z-index: 10;
  }

  #iframe-container iframe {
    top: 0;
    left: 0;
    right: 0;
    position: relative;
  }

  #box-container {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
  }

  #box-container iframe {
    width: 100%;
  }

  footer {
    visibility: hidden;
  }
}
