.star {
	position: absolute;
	border-radius: 50%;
	background: white;
	opacity: 0.8;
	animation: twinkle 1s infinite alternate;
}

@keyframes twinkle {
	0% {
		opacity: 0.3;
	}

	100% {
		opacity: 1;
	}
}