body {
  height: 100dvh;
  width: 100dvw;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  padding-top: 10dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

h1 {
  margin: 0;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 20vw;
  line-height: 1;
  display: block;
  background: linear-gradient(
    90deg,
    #ff6ec4 0%,
    #7873f5 25%,
    #42e695 50%,
    #ffb86c 75%,
    #ff6ec4 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

p {
  font-size: 3vw;
  background: linear-gradient(90deg, #5f4b8b 0%, #11998e 50%, #ff6ec4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

p em {
  font-style: normal;
}

footer {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 2vh 0;
}

footer a {
  font-size: 12px;
  padding: 0 5px;
  text-decoration: underline;
  text-decoration-style: wavy;
  color: #7873f5;
  transition: color 0.2s;
}

footer a:hover {
  color: #ff6ec4;
  text-decoration-color: #ff6ec4;
  animation: wavy-underline 0.5s linear infinite;
}

@keyframes wavy-underline {
  0% {
    text-underline-offset: 1px;
  }
  50% {
    text-underline-offset: 3px;
  }
  100% {
    text-underline-offset: 1px;
  }
}
