﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	border: solid thin #242021;
	overflow: hidden;
	position: relative;
}

header {
	position: relative;
}

header .link {
	position: absolute;
	top: 1vw;
	right: 5vw;
	color: #6D555F !important;!i;!;
	letter-spacing: 1px;
	font-size: 20px;
}

article {
	padding: 15px 75px 0;
}

footer {
	padding: 0 75px 60px;
}

h1 {
	font-size: 19px;
	margin: 16px 0;
	line-height: 23px;
	text-align: center;
}

h2 {
	font-size: 17px;
	margin: 16px 0;
	line-height: 21px;
	text-decoration: underline;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

:is(p, ul) {
	text-align: justify;
	hyphens: auto;
}

p span {
	white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

.blue {
	color: #0462C1 !important;
	text-decoration: underline !important;
}

ul {
	margin: 0 0 16px 12px;
	list-style: none;
}

ul li {
	padding-left: 20px;
}

li:before {
	text-indent: -20px;
	content: "\25A0";
	color: #242021;
	float: left;
	margin-top: -1px;
	font-size: 11px;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
		text-align: left;
	}

	article {
		padding: 16px 16px 0;
	}

	footer {
		padding: 0 16px 16px;
	}

	header .link {
		right: 8vw;
	}
}

@media screen and (max-width:480px) {
	ul {
		margin-left: 0;
	}

	header .link {
		font-size: 16px;
		top: 1px;
	}
}