/* Add custom CSS styles below */ 
img[src*="logo"]{
    animation: saLogo 2s ease-in-out infinite !important;
}

@keyframes saLogo{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.08);
    }
}