<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">


@keyframes star {
	to {
		opacity: 0;
	}

	from {
		opacity:1;
	}
}

.star {
	animation-name: star;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}


</pre></body></html>