/* @label  décoration texte */
/* @longdesc écriture cursive en grande taille et en rose foncé */
span.deco {
    font-size: 1.5em;
/*    font-family: cursive;*/
    font-family: "Grandstander", cursive;
    font-weight: bold;
    font-style: italic;
    color: #5E0353;
}
/* @label  décoration texte */
/* @longdesc écriture fantasy en grande taille et en mauve */
span.deco1 {
    font-size: 2.5em;
/*    font-family: fantasy;*/
    font-family: "Alex Brush", fantasy;
    font-weight: normal;
    font-style: italic;
    color: #2B26A5;
}
/* @label  décoration texte */
/* @longdesc écriture monospace en grande taille et en vert */
span.deco2 {
    font-size: 2.5em;
/*    font-family: monospace;*/
    font-family: "Liberation Mono", monospace;
    font-weight: normal;
    font-style: italic;
    color: #128B2C;
}
/* @label  décoration texte */
/* @longdesc écriture normale gra italic changeant de couleur (marron puis jaune) */
span.deco3 {
    font-weight: bold;
    font-style: italic;
    color: #8C4405;
    animation: clignotement 5s linear infinite alternate;
}
@keyframes clignotement {
    from{color: #8C4405;}    /* marron */
    30%{color: #C7C412;}    /* jaune */
    60%{color: #8C4405;}    /* marron */
    to{color: #C7C412;}    /* jaune */
}
