/* Import a web font that supports the Malayalam script */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Malayalam:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans Malayalam', 'Inter', sans-serif;
}

/* Keyframes for the fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Keyframes for the bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); }
    50% { transform: translateY(0); }
}

.animate-bounce {
    animation: bounce 0.6s infinite;
}