/* -------------------- Welcome to foo.moo.jp -------------------- */
.home {
  display: flex;
  width: 100vw;
  height: 100dvh;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.home .wrapper .title {
  @import url("https://fonts.googleapis.com/css2?family=Caprasimo&display=swap");
  font-family: "Caprasimo", cursive;
  font-size: clamp(30px, 3.90625vw, 130px);
  display: inline-block;
  background-image: linear-gradient(45deg, #FA8BFF 16%, #2BD2FF 57%, #2BFF88 90%);
  background-size: 300% auto;
  animation: gradationAnime 2.5s infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradationAnime {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}/*# sourceMappingURL=style.css.map */