:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: Calibri, Arial, sans-serif;
	font-size: 17px;
	line-height: 21px;
	color: #242021;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	border: solid thin #94C11E;
	overflow: hidden;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
}

p span {
	white-space: nowrap;
}

header {
	position: relative;
}

article {
	padding: 66px 16px 0;
}

article p:nth-of-type(1) {
	text-align: center;
	hyphens: auto;
}

footer {
	padding: 10px 16px;
	background: #94C11E;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

footer figure {
	position: absolute;
	top: -95px;
	right: 24px;
}

footer div {
	background: #fff;
	padding: 10px 25px;
}

footer p {
	text-align: center;
	font-size: 17px;
}

footer strong a {
	color: #800080 !important;
	text-decoration: underline !important;
}

:is(h1, h2, h3) {
	color: #CC0066;
}

h1 {
	font-size: 27px;
	margin: 16px 0;
	line-height: 32px;
	text-align: center;
}

h1 span {
	font-size: 17px;
	display: block;
	line-height: 21px;
}

h2 {
	font-size: 30px;
	line-height: 33px;
	text-align: center;
	position: absolute;
	bottom: -36px;
	left: 30%;
	width: 52%;
}

h2 span {
	display: block;
	color: #242021;
	font-size: 17px;
}

h2 small {
	display: block;
	font-size: 20px;
	line-height: 24px;
}

h3 {
	font-size: 17px;
	margin: 16px 0 0;
	line-height: 21px;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

p:not(:last-child) {
	margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 16px;
	list-style: none;
}

ul li {
	padding-left: 12px;
}

li:before {
	text-indent: -12px;
	content: "\2010";
	color: #242021;
	float: left;
	font-size: 17px;
}

ul li ul {
	margin-bottom: 0;
}

.padding {
	padding-left: 50px;
}

.image {
	padding-right: 82px;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		text-wrap: pretty;
		hyphens: auto;
	}

	article {
		padding: 16px 16px 0;
	}

	footer figure {
		right: 0;
	}

	h2 {
		position: static;
		width: auto;
		padding: 0 1rem;
	}
}

@media screen and (max-width:755px) {
	.padding {
		padding-left: 12px;
	}

	article {
		padding: 16px;
	}

	footer figure {
		position: static;
	}

	.image {
		padding-right: 0;
	}
}