#blink {
	background-color: #051E3E;
	height: 100vh;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

#hi {
	animation: pulse 5s infinite;
		font-weight: bold;
		margin-bottom: 0;
		font-size:15px;
}

@keyframes pulse {
	0% {
	color: #fff;
	}
	10% {
		color: #fff;
	}
	30% {
		color: white;
	}
	50% {
		color: #fff;
	}
	60% {
		color: #fff;
	}
	80% {
		color: white;
	}
	100% {
		color: #fff;
	}
}

#hi:after {
	content: "";
	animation: spin 5s linear infinite;
}

@keyframes spin {
  0% { content:"|| कायकवे कैलास || "; }
  50% { content:"|| ಕಾಯಕವೇ ಕೈಲಾಸ ||"; }
  /**80% { content:"|| కాయకవే కైలాస్ ||"; }**/
  100% { content:"|| Kayakave Kailas ||"; }
}

.footer-col p a{
    color:#fff;
    text-decoration:none;
}

.footer-col{} 