html,
body,
main {
	height: 100%;
	pointer-events: none;
}

body {
	margin: 0;
	padding: 0;
	background: #333;
	color: #eee;
	font-family: sans-serif;
	overflow: hidden;
}

@keyframes welcome {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(.5);
	}
	to {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1);
	}
}

h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	font-size: 15vw;
	font-weight: normal;
	white-space: nowrap;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation: 3s ease-in-out 0s 1 welcome;
}

::-moz-selection {
	background: transparent;
}
::selection {
	background: transparent;
}
