html, body {
	margin: 0;
	padding: 0;
}

html {
	background: #004137;
	font: 1em/1 'proxima-nova', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	height: 5em;
}

svg {
	width: 100%;
	height: 100%;
}

.cta {
	position: relative;
	display: block;
	margin-top: 2rem;
	padding: 1rem 1.5rem;
	background: #095a4d;
	border-radius: 5em;

	color: #c99449;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 600;

	transition: all 0.2s ease;
}
.cta:hover {
	color: #ffd67d;
	transform: translateY(-2px);
	box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.cta svg {
	width: 1.25em; height: 1.25em;
	vertical-align: -0.25em;
}

@media (max-width: 25em) {
	h1 { height: 4em; }
}