@import "tailwindcss"; @theme inline { --font-sans: var(--font-geist-sans); --font-mono: var(--font-geist-mono); } body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @keyframes count-up { 0% { transform: translateY(8px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } .animate-count-up { animation: count-up 0.3s ease-out; }