@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
html,
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  background: #161616;
  cursor: none;
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.container::before {
  content: "";
  background: #f57c00;
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0;
  transform-origin: bottom;
  animation: splash 2s cubic-bezier(0.8, 0.2, 0.2, 0.8) forwards;
}

span {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  color: #f57c00;
  letter-spacing: 2rem;
  /*   filter: blur(3px); */
  animation: blurMe 1s ease-in-out forwards;
  opacity: 0;
}

span:nth-child(2n+1) {
  animation-delay: calc(0.2s + 200ms * 1);
}

span:nth-child(2n+2) {
  animation-delay: calc(0.2s + 200ms * 2);
}

span:nth-child(2n+3) {
  animation-delay: calc(0.2s + 200ms * 3);
}

span:nth-child(2n+4) {
  animation-delay: calc(0.2s + 200ms * 4);
}

span:nth-child(2n+5) {
  animation-delay: calc(0.2s + 200ms * 5);
}

span:nth-child(2n+6) {
  animation-delay: calc(0.2s + 200ms * 6);
}

@keyframes blurMe {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes splash {
  0% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  100% {
    top: 0;
    height: 0%;
  }
}