@keyframes MyAnimation_Font_Blow {
    from {font-size:1em}
    to {font-size:xx-large}
                        
}
.MyAnimation_Font_Blow {
    animation-name: MyAnimation_Font_Blow;
    animation-duration: 1s;
    animation-iteration-count: 5;
}

.MyFont_Blow {
    animation-name: MyAnimation_Font_Blow;
    animation-duration: 1s;
    animation-iteration-count: 5;
}
@keyframes MyAnimation_Font_Flashing{
    0% {color: red;}
    49% {color: red;}
    60% {color: transparent;}
    99% {color: transparent;}
    100% {color: red;}
}
.MyAnimation_Font_Flashing {    
    animation-name: MyAnimation_Font_Flashing;
    animation-duration: 1.2s;
    animation-iteration-count:infinite;
}
.MyFont_Flash {
    animation-name: MyAnimation_Font_Flashing;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
}


@keyframes MyAnimation_Font_Invaces {
    0% {font-size:medium;}
    33% {font-size: large;}
    66% {font-size: x-large;}
    100% {font-size: xx-large;}
    
}
.MyAnimation_Font_Invaces {        
    animation-name: MyAnimation_Font_Invaces;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
}
.MyFont_Invaces {
    animation-name: MyAnimation_Font_Invaces;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
}