/* Exploding letters animation */
.explode:before {
	content: attr(data-content);
	color: attr(data-color);
	position: absolute;
	opacity: 0;
}
.explode:after {
	content: '';
}
.explode:hover:before {
	animation-delay: 0.5s;
	animation: 1s ease-out 0s 1 explode;
}

@keyframes explode {
	0% {
		transform: none;
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}