body {
	font-size: 16px;
	line-height: 1.62;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #f0f0f0;
}
.main {
	max-width: 600px;
	font-size: 18px;
	flex: 1;
	margin: 3rem auto;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.main h1 {
	margin-top: 0;
}
.main p:first-of-type {
	margin-top: 0;
}
.main p:last-of-type {
	margin-bottom: 0;
}
.main a {
	position: relative;
	text-decoration: none;
	color: #81b29a;
	transition: all .3s ease;
}
.main a:hover::before {
	width: 79px;
	transform: translateX(186.719px);
	transition-duration: 150ms;
}
footer {
	margin: 0.5rem 0;
	padding: 0 1rem;
	opacity: 0.35;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 374.5px) {
	footer {
		justify-content: flex-end;
	}
	footer div:first-of-type {
		display: none;
	}
}
footer a {
	color: inherit;
	text-decoration: none;
}