@charset "utf-8";
.greeting_wrapper {
  margin: 0 auto;
  padding-top: 12%;
}
.greeting_wrapper h1 {
  margin: 0px;
  font-family: 'Niconne';
  font-size: 48px;
  font-weight: normal;
  color: whitesmoke;
}
.greeting_wrapper span {
  display: inline-block;;
  font-family: 'Gruppo', sans-serif;
  font-size: 72px;
  line-height: 1.2;
  color: whitesmoke;
}
.greeting_wrapper h1, .greeting_wrapper span {
  text-shadow: 2px 2px black;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  animation: bright_up 3s ease-in;
  animation-fill-mode: forwards;
}
.greeting_wrapper span:nth-child(2) {
  animation-delay: 3s;
}
.greeting_wrapper span:nth-child(3) {
  animation-delay: 6s;
}
.greeting_wrapper span:nth-child(4) {
  animation-delay: 9s;
}
@keyframes bright_up {
  from { opacity: 0; }
  to { opacity: 0.8; }
}
