/*------------------------------------*\
    
    CSS Custom Properties (aka CSS Variables)
 
    Custom properties are entities defined by CSS authors that contain specific values to be reused throughout a document
    Example usage: brand colors, common margins, drop-shadows, border styles, and more!
    
    Visit the CSS Custom Properties guru card for more info: https://app.getguru.com/card/ceE54p4i/CSS-Custom-Properties-AKA-CSS-Variables 

\*------------------------------------*/
:root {
    --color-light :  #FFFBF7;
    --cta-light: #345ABA ;
    --cta-dark: #113286 ;
    --primary-light : #FFBC72 ;
    --primary-dark : #E88E2C ;
    --heading-color-dark : #000500 ;
    --paragraph-color : #4C4C4C;
}
