


@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;
}


