/* Custom project variables */

:root{
    --color-text : var(--color-blue); /* Couleur des textes de l'application */
    --color-link : var(--color-primary); /* Couleur des textes de l'application, pour les liens hover/focus */

    /** COLORS **/
    --color-yellow : #FCC952;
    --color-orange : orange;
    --color-blue : #181D46;
    --color-beige : #FDE7E0;
    --color-red : #e9383f;
    --color-red-light : #ff3c44;
    --color-green : #48c05b;
    --color-green-light : #54F98D;
    --color-grey : #B7B7B7;
    --color-grey-light : #DDDDDD;
    --color-white : #fff;
    --color-black : #000000;

    /* FONT SIZE */
    --font-size-1: 1.9rem;
    --font-size-2: 1.6rem;
    --font-size-3: 1.4rem;
    --font-size-4: 1.2rem;
    --font-size-5: 1rem;

    /* TITLE FONT SIZE */
    --title-font-size-1: 3.7rem;
    --title-font-size-2: 2.9rem;
    --title-font-size-3: 2.1rem;

    --title-font-size-1-xs: 3rem;
    --title-font-size-2-xs: 2.2rem;
    --title-font-size-3-xs: 1.4rem;

    /* FONT WEIGHT */
    --default-font-weight: 600;
}