* {
	box-sizing: border-box;
	font: sans-serif;
}
body {
	margin: 0;
	padding: 0;
	background-color: #eee;
}
section {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}
section div {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat';
	text-transform: uppercase;
	font-size: 80px;
	animation: fadein 2s;
}
@keyframes fadein {
	from { transform: scale(.95) translateY(5px); opacity: 0; }
	to   { transform: scale(1) translateY(0);  opacity: 1; }
}
