body {
  background: #572587;
  font-size: 500%;
  font-family: GeneralSans, sans-serif;
  font-weight: 600;
  color: #fff;
}

.message {
  position: absolute;
  display: flex;
  /* background-image: url('bird.png');
  background-position: center left;
  background-repeat: no-repeat; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.animation-box {
  width: 100%;
  height: 27.5rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.animation-container {
  width: 1000rem;
  height: 30rem;
}

@keyframes fadeInOut {
  0% {
	opacity: 0;
  }

  45% {
	opacity: 1;
  }

  100% {
	opacity: 0%;
  }
}


.text {
  font-size: 3.4rem;
  text-transform: uppercase;
  opacity: 0;
  animation-name: fadeInOut;
  animation-delay: 500ms;
  animation-duration: 2s;
}