﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
}

#wrapper {
	max-width: 528px;
	margin: 1rem auto;
	padding: 16px;
	border: solid thin #242021;
	overflow: hidden;
	position: relative;
}

header p {
	padding-left: 19px;
}

header div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

header p:nth-of-type(1) {
	font-family: Arial, sans-serif;
	font-size: 13px;
	line-height: 18px;
	margin-top: -19px;
}

article {
	padding: 0 0 16px;
}

h1 {
	font-size: 26px;
	margin: 10px 0;
	line-height: 30px;
	text-align: center;
}

h1 span {
	font-size: 19px;
}

h2 {
	font-size: 17px;
	margin: 10px 0 3px;
	line-height: 21px;
	text-decoration: underline;
}

img {
	max-width: 100%;
}

p:not(:last-child) {
	margin-bottom: 10px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 10px;
	list-style: none;
}

ul li {
	padding-left: 12px;
}

li:before {
	text-indent: -12px;
	content: "\2212";
	color: #242021;
	float: left;
	margin-top: 2px;
	font-size: 9px;
}

@media screen and (max-width:526px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
	}

	header p {
		padding-left: 0;
		text-align: center;
	}

	header p:nth-of-type(1) {
		margin-top: 10px;
	}

	article br {
		display: none;
	}
}