@import url('https://fonts.googleapis.com/css?family=Great+Vibes|Courgette');

html {
	font-size: 1vw
}

body {
	height: 100vh;
	overflow: hidden;
}

.body {
	width: 100%;
	max-width: 100%;
	height: 100vh;
	overflow: hidden;
}

h1 {
	border-bottom: 1px solid black;
	position: relative;
	z-index: 1;
	background-color: white;
	width: 100%;
	font-family: tangerine;
	font-size: 4rem;
	padding-left: 1rem;
	margin-top: 0px;
}

.runner {
	opacity: .99;
	position: absolute;
	left: -10vw;
	width: 10vw;
}

.howler {
	z-index: 1;
	display: flex;
	position: absolute;
	top: 0px;
	justify-content: center;
	background-color: white;
	width: auto;
	height: 100vh;
	max-width: 100vh;
}

.crest {
	width: 50vw;
	left: 25vw;
	position: relative;
}

.story {
	z-index: 0;
	position: relative;
	top: 100vh;
	bottom: auto;
	padding: 0 20vw;
	font-family: Courgette;
	font-size: 2rem;
	font-style: italic;
	line-height: 5rem;
}

.bigA {
	font-family: Great Vibes;
	font-size: 4rem;

}

.greeting {
	font-size: 2rem;
	position: absolute;
	top: 20vh;
	text-align: center;
	width: 100%;
}
.hamster {
	height:10rem;
	background-color: red;
	position: absolute;
	left: 50%;
	top: 50vh;
}
iframe{
	height: 0px;
	width: 0px;
	margin-left: 5vw;
	position: absolute;
	top: 12vh;
	animation: rise 5s linear 118s; 
	animation-fill-mode: forwards;
}

#next-app {
	margin-left: 2rem;
}

@keyframes rise {
	from{
		height: 0px;
		width: 0px;
	}
	to{
	height: 85vh;
	width: 90vw;
	}
}