/* basics */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	background: #fff;
	color: #000;
	font-family: 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}
a,
a:link {
	color: #f4a100;
	text-decoration: underline;
}
a:visited,
a:active,
a:hover {
	color: #f4a100;
	text-decoration: none;
}
p {
	margin: 0 0 25px 0;
	font-weight: normal;
}
img {
	max-width: 100%;
	height: auto;
}

/* content */
.main {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	min-height: 100dvh;
	padding: 30px;
	text-align: center;
	word-wrap: break-word;
}
.main img {
	margin-bottom: 30px;
}
.main > *:last-child {
	margin-bottom: 0;
}
