@keyframes fall {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  transition: background-color 3s ease-in-out;
}

#container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#animation-svg {
  width: 100%;
  height: 100%;
}

.word {
  font-family: "Comic Sans MS", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-anchor: start;
  opacity: 0;
  transition: fill 3s ease-in-out;
}/*# sourceMappingURL=style.css.map */