/* Custom Stylesheet for Standalone HTML Landing Page */

/* Shimmering Text Effect */
.text-shimmer {
  background: linear-gradient(120deg, #f3f4f6 30%, #ffd700 50%, #f3f4f6 70%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Custom CSS Transition Rotate Utility */
.rotate-180 {
  transform: rotate(180deg);
}

/* Base custom font overrides or improvements if needed */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
