* {
    font-family: 'Poppins', sans-serif;
}
.bounce {
    animation: bounce 3s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}