/*-----------------------------------------------------------------------------------------------------*/
/* HTML STYLES */
body {
  background: #4FA7DD;
  background-image: none;
  font-family: VAGRoundedBT-Regular;
  font-weight: 100;
  min-height: 100%;
}
h1 {
  font-weight: bold;
  font-size: 44px;
  margin-bottom: 0;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
}
p {
  margin-top: 0;
}
.hidden-desktop {
  display: none;
}
ul.contact li {
  margin-top: 10px;
  margin-bottom: 20px;
}
ul.contact li a {
  color: blue;
}
footer {
  background-color: #F2D31E;
  border-top: solid 2px #F2D31E;
}
.jellyfish {
  animation: MoveUpDown 20s linear infinite;
  position: relative;
  left: 0;
  bottom: 0;
}
.jellyfish:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both, MoveUpDown 20s linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.jellyfish2 {
  animation: MoveUpDown 40s linear infinite;
  position: relative;
  left: 0;
  bottom: 0;
}
.jellyfish2:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both, MoveUpDown 40s linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.jellyfish3 {
  animation: MoveUpDown 25s linear infinite;
  position: relative;
  left: 0;
  bottom: 0;
}
.jellyfish3:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both, MoveUpDown 25s linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes MoveUpDown {
  0 {
    bottom: 0;
  }
  50% {
    bottom: 50px;
  }
  100% {
    bottom: 0;
  }
}
