



@media (max-width: 991px) {
    .about-image{
        max-width : 500px;
        margin : 0 auto;
    }
}


.animated-dance{
    animation: dance 2s ease-out infinite alternate;
}
@keyframes dance {
    0% {
        transform: translateX(10%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-20%) scale(.8);
        opacity: .8;
    }
}