.loading-text {
	place-self: center;
	background: linear-gradient(90deg, #E96A5F, #A31340, #E96A5F) -100%/ 200%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font: 900 clamp(2em, 10vw, 10em) Segoe UI, sans-serif;
	animation: shimmer 2s linear infinite
}

@keyframes shimmer {
	to {
		background-position: 100%
	}
}

/* avoid problems in high contrast mode */
@media (forced-colors: active) {
	p {
		background: #212121;
		color: aquamarine
	}
}