﻿.animated-counter {
    animation: countUp 2s linear;
}

@keyframes countUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
