html, body {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#cornerWobble {
	position: absolute;
	bottom: -10vh;
	left: -20%;
	height: 90vh;
	
	transform-origin: bottom center;
	
	animation: wobble;
	animation-duration: 1s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes wobble {
	from {
		transform: rotate(10deg) scale(1.1);
	}
	to {
		transform: rotate(-10deg) scale(.85);
	}
}

#titleWobble {
	position: absolute;
	left: 40%;
	top: 20%;
	font-size: 3em;
	line-height: 3em;
	
	animation: wobble;
	animation-duration: .4s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}