:root {
  --gradient: linear-gradient(90deg, #DD52E5, #81B5F9, #eee);
}

body {
  font-family: Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125em;
  line-height: 1.6;
  color: #333;
  background: #ddd;
  background-size: 400%;
  background-image: var(--gradient);
  animation: bg-animation 25s infinite alternate;
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
.title {
  margin: 0 0 0.5em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 8rem;
  margin: 0;
  background-image: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 400%;
  transition: background-position 2s;
  animation: bg-animation 15s infinite alternate;
}

.title:hover {
  background-position: right;
}

footer {
  z-index: 1000;
  position: fixed;
  padding: 20px;
  bottom: 0;
  color: #2e2e2e;
  font-size: 1rem;
}
a {
  text-decoration: none;
  color: #2e2e2e
}
