* {
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

#wrapper {
	border: solid thin #000;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	line-height: 18px;
	position: relative;
	width: 800px;
	margin: 12px auto;
	padding: 64px;
	background-color: #fff;
	overflow: hidden;
	text-align: left;
	box-sizing: border-box;
}

article {
	padding: 40px 0 0;
}

header {
	display: flex;
	justify-content: flex-end;
}

footer {
	margin: 16px 0 0;
}

h1 {
	font-size: 18px;
	margin: 16px 0px 16px;
	line-height: 22px;
	text-decoration: underline;
	color: #DB007A;
}

h2 {
	font-size: 13px;
	margin: 16px 0px 3px;
	line-height: 18px;
}

h3 {
	font-size: 22px;
	margin: 16px 0px;
	line-height: 26px;
}

p {
	margin-bottom: 16px;
}

p:last-child {
	margin-bottom: 0px;
}

a {
	color: #0000ff;
	text-decoration: underline;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

ul {
	margin: 0 0 16px 22px;
	list-style: none;
}

ul li {
	padding-left: 20px;
}

li:before {
	text-indent: -20px;
	content: "\2022";
	color: #000;
	float: left;
	margin-left: 0px;
	font-size: 25px;
	margin-top: -1px;
}

@media screen and (max-width:798px) {
	#wrapper {
		width: 100%;
		margin: 0px auto;
		border: none;
		padding: 16px;
	}

	article {
		margin-top: 16px;
	}

}