@keyframes gradient-move {
    0% {
      background-position: 200% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: transparent;
  }
  
  .animate-gradient-text {
    background: linear-gradient(90deg, gray, white, #0f0fff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 4rem; /* Equivalent to text-6xl */
    font-weight: bold; /* Equivalent to font-bold */
    animation: gradient-move 3s linear infinite;
  }
  