	html, body {
		min-height:100vh;
		margin: 0;
	}

	body {
		background: url('../img/background.jpg') no-repeat center center fixed;
		background-size: cover;
	}

	.content {
		display:flex;
		flex-direction:column;
		min-height:100vh;
	}

	@font-face {
		font-family: "urlText";
		src: url('../fonts/FoundationTitlesHand-v0.85.ttf');
	}

	@font-face {
		font-family: "parkedText";
		src: url('../fonts/FoundationOne.ttf');
	}

	h1 {
		font-family: "urlText";
		font-size: 72px;
		color: transparent;
		padding-top: 40vh;
		padding-left: 28vw;
		background-image: linear-gradient(
			120deg,
			#ffe033 0%,
			#b39800 50%,
			#ffe033 100%
		);
		-webkit-background-clip: text;
		background-clip: text;
		filter: drop-shadow(0 0 25px #9933ff);
		background-size: 400% 100%;
		animation: shimmer 10s linear infinite;
	}

	h2 {
		font-family: "parkedText";
		font-size: 72px;
		color: transparent;
		padding-top: 15vh;
		padding-left: 55vw;
		background-image: linear-gradient(
			120deg,
			#800000 0%,
			#e60000 50%,
			#800000 100%
		);
		-webkit-background-clip: text;
		background-clip: text;
		filter: drop-shadow(0 0 25px #e6e600);
		background-size: 400% 100%;
		animation: shimmer 10s linear infinite;
	}

	@keyframes shimmer {
		0% { background-position: -200%; }
		100% { background-position:  200%; }
	}