/* =================================================================
   BASE ANIMATION STYLES
   This file contains styles that are SHARED by ALL animations.
   It sets the font family, font size, and other common properties.
   This fixes the font size bug and follows the DRY principle.
   ================================================================= */

[class*="anim-"] { 
    display: inline-block;
    font-family: var(--font-family);
    font-size: var(--font-size);
    /* Add any other universal styles here in the future */
}

[class*="anim-"] span { 
    display: inline-block; 
    /* This ensures individual letters can be animated */
}