@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); body { font-family: 'Poppins', sans-serif; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #fce4ec; } ::-webkit-scrollbar-thumb { background: #f472b6; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #ec4899; } /* Animation for cards */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .custom-card { animation: fadeIn 0.5s ease-out forwards; } .custom-card:nth-child(1) { animation-delay: 0.1s; } .custom-card:nth-child(2) { animation-delay: 0.2s; } .custom-card:nth-child(3) { animation-delay: 0.3s; }