﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 17px;
	line-height: 22px;
	color: #242021;
}

#wrapper {
	max-width: 800px;
	margin: 0.75rem auto;
	padding: 60px 80px;
	border: solid thin #242021;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	background-color: #fff;
}

.center {
	text-align: center;
}

header {
	display: flex;
	justify-content: flex-end;
}

article {
	padding: 30px 0 12px;
}

footer {
	font-size: 14px;
	line-height: 19px;
}

h1 {
	font-size: 36px;
	margin: 30px 0;
	line-height: 1.2;
	text-align: center;
}

h2 {
	font-size: 17px;
	margin: 35px 0 16px;
	line-height: 21px;
}

h3 {
	font-size: 22px;
	margin: 16px 0;
	line-height: 26px;
}

img {
	max-width: 100%;
}

p {
	margin-bottom: 16px;
	text-align: justify;
	hyphens: auto;
}

a {
	color: #0000ff;
	text-decoration: underline;
}

a:hover {
	text-decoration: underline;
}

ul {
	margin: 0 0 30px 23px;
	list-style: none;
}

ul li {
	padding-left: 23px;
}

li:before {
	text-indent: -23px;
	content: "\2022";
	color: #242021;
	float: left;
	margin-left: 0;
	font-size: 25px;
	margin-top: 0;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		hyphens: auto;
		padding: 16px;
	}

	p {
		text-align: left;
	}

	h1 {
		font-size: 29px;
	}
}