.styleCenterShout {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;

	display: flex;
	align-items: center; justify-content: center;

	text-transform: uppercase;
}
.styleCenterShout > div { background-color: red; }

.styleCenterShout.showUntil > div {
	transform: translateX(-100px);
	opacity: 0;
	transition:
		transform var(--baseAnimationLength),
		opacity var(--baseAnimationLength);
}
.styleCenterShout.showUntil > div > span {
	display: block;
	transform: translateX(200px);
	transition: transform var(--baseAnimationLength);

	text-transform: uppercase;
}
.styleCenterShout.showUntil-showing * {
	opacity: 1 !important;
	transform: translateX(0px) !important;
}
