html, body {
	margin: 0;
}

.header {
	height: 5rem;
	width: 100%;
	position: fixed;
	top: 0;
	line-height: 2rem;
	background-color: rgb(244, 208, 204);
}

.header > h3 {
	position: relative;
	text-align: center;
}

.header > a {
	position: absolute;
	display: block;
	right: 3rem;
	top: 1rem;
}

.hero {
	width: 100%;
	height: auto;
	text-align: center;
	padding-bottom: 8rem;
	border-bottom: 2px solid lightgrey;
}

.hero > h1 {
	padding-top: 4rem;
	font-size: 7em;
	font-style: italic;
}

.hero > p {
	max-width: 800px;
	font-size: 2em;
	margin: auto;
	padding-right: 2rem;
	padding-left: 2rem;
}

.hero > .hero-icons {
	margin: auto;
	margin-top: 5rem;
	width: 50%;
	display: flex;
	justify-content: space-evenly;
}

.hero > .hero-icons > * {
	width: 100px;
	height: auto;
}

.form {
	width: 80%;
	max-width: 500px;
	margin: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
	margin-bottom: 5rem;
}

.form > h2 {
	font-size: 3em;
	margin-bottom: 2rem;
}

.form > .input-name-age {
	display: flex;
	justify-content: space-evenly;
	margin: 1rem;
	margin-bottom: 2rem;
}

.form > .input-name-age > input {
	height: 2rem;
	width: 40%;
	font-size: 1.5rem;
	text-indent: 10px;
}

.form > input {
	margin-bottom: 1rem;
	height: 2rem;
	font-size: 1.5rem;
	text-indent: 10px;
}

.form > .input-dinosaur {
	margin-bottom: 2rem;
}

.form > .textarea {
	height: 5rem;
	margin-bottom: 2rem;
	width: 500px;
	font-size: 1.5rem;
	text-indent: 10px;
}

.form > button {
	margin: auto;
	font-size: 1.7rem;
	background: orangered;
	color: white;
	border: none;
	padding: 10px;
}

.form > button:hover {
	transform: scale(1.2);
	cursor: pointer;
}

.footer {
	position: sticky;
	background-color: rgb(173, 176, 239);
	height: 10rem;
}

.footer > h3 {
	margin: auto;
	padding-top: 3rem;
	text-align: center;
}

.footer > a {
	margin: auto;
	padding-top: 2rem;
	text-align: center;
	align-self: center;
	display: block;
}

@media only screen and (max-width: 700px) {
	.header {
		display: flex;
		justify-content: space-between;
	}
	.header > h3 {
		flex: 0.5;
	}
	.header > a {
		text-align: center;
	}

	.hero {
		height: auto;
		margin-top: 0rem;
		padding-bottom: 4rem;
	}

	.hero > h1 {
		margin-top: 6rem;
		padding-top: 2rem;
		font-size: 4em;
	}

	.hero > p {
		font-size: 1.5em;
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.hero > .hero-icons {
		margin-top: 3rem;
		width: auto;
	}

	.hero > .hero-icons > * {
		width: 70px;
	}

	.form {
		width: 90%;
	}

	.form > h2 {
		font-size: 3em;
		margin-bottom: 1rem;
	}

	.form > .input-name-age {
		justify-content: space-between;
		margin-top: 1rem;
		margin-bottom: 2rem;
	}

	.form > .input-name-age > input {
		width: 45%;
	}

	.form > input {
		margin-bottom: 1rem;
		height: 2rem;
		font-size: 1.5rem;
		text-indent: 10px;
	}

	.form > .textarea {
		width: auto;
		font-size: 1.5rem;
	}

}
