.disableAnimation {
  animation: none !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f67280;
  overflow: hidden;
}
body .iconWrapper {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 5;
}
body .iconWrapper svg {
  width: 40px;
  fill: #fff;
  transform-origin: center;
}
body .iconWrapper svg .one,
body .iconWrapper svg .two,
body .iconWrapper svg .three {
  transform-origin: center;
}
body .iconWrapper svg .one {
  animation: firstLineShow 0.5s ease-in-out;
}
body .iconWrapper svg .two {
  animation: secondLineReverse 0.5s ease-in-out;
}
body .iconWrapper svg .three {
  animation: thirdLineShow 0.5s ease-in-out;
}
body .iconWrapper.open .one {
  transform: rotate(45deg) translate(8px, 38px);
  animation: firstLineAnimation 0.5s ease-in-out;
}
body .iconWrapper.open .two {
  transform: scale(0);
  animation: secondLineAnimation 0.5s ease-in-out;
}
body .iconWrapper.open .three {
  transform: rotate(135deg) translate(15px, 0);
  animation: thirdLineHide 0.5s ease-in-out;
}
body .navigationWrapper {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  z-index: 4;
}
body .navigationWrapper ul {
  list-style-type: none;
}
body .navigationWrapper ul li {
  text-align: center;
  text-transform: uppercase;
  padding: 0 10px;
  margin: 5px 0;
  font-size: 36px;
  cursor: pointer;
}
body .navigationWrapper ul li:hover a {
  text-decoration: underline;
}
body .navigationWrapper ul li a {
  margin: 0 20px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
body .navigationWrapper.open {
  opacity: 1;
  pointer-events: auto;
}
body .waveWrapper {
  position: absolute;
  top: -20vh;
  height: 120vh;
  width: 100%;
  overflow: hidden;
}
body .waveWrapper .wrapper {
  position: absolute;
}
body .waveWrapper .wrapper .box {
  background-color: #35477d;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  animation: boxReverse 0.8s forwards linear;
}
body .waveWrapper .wrapper .box.open {
  animation: box 0.8s forwards 0.3s linear;
}
body .waveWrapper .wrapper img.thirdWave {
  height: 400px;
  width: 250vw;
  transform: translate3d(50%, -100vh, 0);
  animation: waveThreeReverse 0.9s forwards 0.15s linear;
}
body .waveWrapper .wrapper img.secondWave {
  height: 200px;
  width: 150vw;
  transform: translate3d(10%, -100vh, 0);
  animation: waveTwoReverse 0.9s forwards 0.1s linear;
}
body .waveWrapper .wrapper img.firstWave {
  height: 300px;
  width: 200vw;
  transform: translate3d(-60%, -100vh, 0);
  animation: waveReverse 0.9s forwards 0.05s linear;
}
body .waveWrapper .wrapper img.open.thirdWave {
  animation: waveThree 0.9s forwards linear;
}
body .waveWrapper .wrapper img.open.secondWave {
  animation: waveTwo 0.9s forwards 0.05s linear;
}
body .waveWrapper .wrapper img.open.firstWave {
  animation: wave 0.9s forwards 0.1s linear;
}
body .author {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  position: absolute;
  left: calc(50% - 96px);
  bottom: 0;
  font-style: italic;
  font-size: 12px;
  color: #212121;
  background-color: white;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
}

@keyframes firstLineAnimation {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(0deg) translateY(0);
  }
  100% {
    transform: rotate(45deg) translate(8px, 38px);
  }
}
@keyframes firstLineShow {
  0% {
    transform: rotate(45deg) translate(8px, 38px);
  }
  50% {
    transform: rotate(0deg) translateY(0);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes secondLineAnimation {
  0% {
    transform: scale(1);
  }
  50%,
  100% {
    transform: scale(0);
  }
}
@keyframes secondLineReverse {
  0%,
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes thirdLineShow {
  0% {
    transform: rotate(135deg) translate(15px, 0);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes thirdLineHide {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(135deg) translate(15px, 0);
  }
}
@keyframes wave {
  0% {
    transform: translate3d(-50%, -100vh, 0);
  }
  100% {
    transform: translate3d(0%, 100vh, 0);
  }
}
@keyframes waveTwo {
  0% {
    transform: translate3d(10%, -100vh, 0);
  }
  100% {
    transform: translate3d(-10%, 100vh, 0);
  }
}
@keyframes waveThree {
  0% {
    transform: translate3d(-60%, -100vh, 0);
  }
  100% {
    transform: translate3d(0%, 100vh, 0);
  }
}
@keyframes waveReverse {
  100% {
    transform: translate3d(-50%, -100vh, 0);
  }
  0% {
    transform: translate3d(0%, 100vh, 0);
  }
}
@keyframes waveTwoReverse {
  100% {
    transform: translate3d(10%, -100vh, 0);
  }
  0% {
    transform: translate3d(-10%, 100vh, 0);
  }
}
@keyframes waveThreeReverse {
  100% {
    transform: translate3d(-60%, -100vh, 0);
  }
  0% {
    transform: translate3d(0%, 100vh, 0);
  }
}
@keyframes box {
  0% {
    height: 0;
  }
  100% {
    height: 120vh;
  }
}
@keyframes boxReverse {
  100% {
    height: 0;
  }
  0% {
    height: 120vh;
  }
}