.bouncer{
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-20px);
    }
}
.txt{
    color: #fb873f;
}