@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

.stars, .twinkling {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.stars {
	background: #13111C url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
	z-index: -2;
}

.twinkling {
	background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
	z-index: -1;
	animation: move-twinkle-back 200s linear infinite;
	opacity: 0.5;
}

@keyframes move-twinkle-back {
	from {background-position: 0 0;}
	to {background-position: -10000px 5000px;}
}
