﻿.animatedText {
	animation: fadeAndScale 1.2s cubic-bezier(.2,.55,.54,.19
	);
	transform-origin: center bottom;
}

@keyframes fadeAndScale {
	from {
		opacity: 0;
		transform: scale3d(.75, .75, 1);
	 }
	 to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
} 