ui/countdownnumber.razor.scss
@import "theme";

@keyframes countdown-pulse
{
    0%   { transform: scale( 1.3 ); }
    60%  { transform: scale( 0.95 ); }
    100% { transform: scale( 1.0 ); }
}

CountdownNumber
{
    font-family: $header-font;
    font-size: 240px;
    font-weight: 800;
    color: white;
    text-shadow: 0px 12px 30px rgba( 0, 0, 0, 0.45 );

    &.pulse
    {
        animation: countdown-pulse 0.35s ease-out;
    }
}