@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800;9..144,900&family=Outfit:wght@300;400;500;600;700&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; html, body, #root { height: 100%; margin: 0; } body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-family: 'Outfit', -apple-system, system-ui, sans-serif; background: #f5efe2; color: #2a3548; background-image: radial-gradient(rgba(42,53,72,0.025) 1px, transparent 1px); background-size: 4px 4px; } * { -webkit-tap-highlight-color: transparent; } .no-scrollbar::-webkit-scrollbar { display: none; } .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; } @keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.3; } } .blink { animation: blink 1.4s ease-in-out infinite; } .font-serif { font-family: 'Fraunces', Georgia, serif; } .font-sans { font-family: 'Outfit', -apple-system, system-ui, sans-serif; } .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }