

.text-shadow {
	font-family:arial;
	font-size: 46px;
	font-weight:900 !important;
	color: transparent;
	animation-delay: 0.1s;
	text-shadow: 2px 2px 10px blue;
	transition: all 0.8s ease-in-out;
	text-align: center;
	letter-spacing: 0.1em;
	animation: flicker 2.8s ease-in-out infinite alternate;
	
	&:hover {
		color: yellow;
	}
}

.tags small {
	@media (max-width: 768px) {
		font-size: 0.3em ;
	}
}

@keyframes flicker {
	0% {
		opacity: 0.1;
		text-shadow: 4px 4px 10px blue;
	}
	100% {
		opacity: 1;
		text-shadow: 10px 10px 30px blue;
	}
}