.mood{color:red !important;}
.omde{color:white;background-color:red; padding:5px;border-radius:5px;border:1px solid red;}
.omde:hover{color:red;border:1px solid red;background-color:white;}
.omde{
    animation:blinkingText 1.5s infinite;
	animation-iteration-count: 3;
}
@keyframes blinkingText{
    0%{     background-color: red;color:white;    }
    50%{    background-color: transparent;color: red;}
    100%{   background-color: red;color:white;    }
}