/* Text animation */

[data-text-animate] {
	visibility: hidden;
}

.letter {
	display: inline-block;
}

.word {
	white-space: nowrap
}


/* Custom animation */

.zoomInOut {
	animation: zoomInOut 10s ease-in-out 0s infinite alternate;
}

@keyframes zoomInOut {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.25);
	}
}


/* Core overrides */

body {
	background: #fff;
}