.footing{
	height: 50px;
	/*background-color: #212529;*/
	/*position: fixed; */
	/*position: absolute; */
	position: relative; 
	bottom: 0; 
	color: #212529; 
	text-align: center;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: .5;
  }
}