canvas.invtro
{
	position: relative;
	margin: -100px 0;
	z-index: 1;
}

.sparkle
{
	position: absolute;
	animation: 0.5s linear sparkle;
}

@keyframes sparkle
{
	0%
	{
		color: #000;
		transform: scale(100%);
		animation-timing-function: ease-in-out;
	}
	50%
	{
		color: #00A550;
		transform: scale(150%);
		animation-timing-function: ease-in-out;
	}
	100%
	{
		color: #000;
		transform: scale(100%);
	}
}
