body {
  position: relative;
  min-height: 100vh; /* Ensures the body takes up at least the full viewport height */
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes enlarge {
  0% {
    background-position: center bottom;
    background-size: 100%;
  }
  100% {
    background-position: center bottom;
    background-size: 150%;
  }
}

.animate-charcter {
  background-image: linear-gradient(
    -225deg,
    #FFFFFF 0%,
    #000000 29%,
    #FFFFFF 67%,
    #000000 100%
  );
  background-size: 200% auto;
  color: #fff;
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 1s linear infinite;
  display: inline-block;
  font-size: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

@keyframes textclip {
  to {
    background-position: -200% center; /* Change this to -200% to animate from left to right */
  }
}
