body.refreshed #content,
body.refreshed>header,
body.refreshed #sidebar {
	animation-name: refresh-bg;
	animation-duration: 1s;
}

body.refreshed>header>div.turnier {
	animation-name: refresh-font;
	animation-duration: 1s;
}

@keyframes refresh-bg {
	from {
		background-color: var(--lightorange);
	}

	to {
		background-color: var(--bgcolor);
	}
}

@keyframes refresh-font {
	from {
		color: var(--bgcolor);
	}

	to {
		color: var(--orange);
	}
}