﻿	.blink{
		/*width:200px;*/
		height: 25px;
	    /*background-color: magenta;*/
		padding: 15px;	
		text-align: center;
		line-height: 0px;
	}
	h5{
		font-size: 16px;
		font-family: arial;
		color: white;
		animation: blink 1500ms linear infinite;
	}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}

@keyframes blink {
    from {
        color:#ea752c;
    }
    to {
        color:white;
    }
}