body {
	margin: 0;
	padding: 50px;
	height: 100dvh; width: 100dvw; overflow: hidden;
	
	background-color: #418787;
	
	font-family: 'Inter';
	font-size: 20px;
	color: #FFF;
}
body > section {
	display: flex; height: calc(100% - 100px); width: calc(100% - 100px);
	flex-direction: column;
	align-items: stretch;
	row-gap: 50px;
}
body > section > .content {
	display: flex; flex: 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 25px;
}
body > section > .content > .logo {
	display: block; width: 300px;
}
body > section > .content > .hook {
	text-align: center;
}
body > section > footer {
	flex: 0 0 auto;
}
body > section > footer > .copyright {
	text-align: center;
}