.spinning {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.jump {
    animation-name: jump;
    animation-duration: 2s;
}

.log {
    max-height: 20vh;
}

@Keyframes jump {
    0% {}

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

@media screen and (min-width: 500px) {  
    #whatsappShareLink {  
        display: none  
    }  
}