.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #00b33c;
  color: white;
  text-align: center;
}

.Highlight{
		background-color: #FDFEFE;
		color: #ff0000;
		border-style: none none ridge none;
		border-color: #FDFEFE;
/*		text-align: center;*/
		position: relative;
		background-color: #000000;
		animation-name: example;
		animation-duration: 4s;
		animation-iteration-count: infinite;
}
@keyframes example {
		25%	  {background-color: #ffffff;}
		50%   {background-color: #000000;}
		75%   {background-color: #ffffff;}
		100%  {background-color: #000000;}
		}
