﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #242021;
}

#wrapper {
	max-width: 800px;
	margin: 0.75rem auto;
	padding: 80px 90px;
	border: solid thin #242021;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	background-color: #fff;
}

header {
	margin: 0 0 40px;
	display: flex;
	justify-content: flex-end;
}

h1 {
	font-size: 32px;
	margin: 16px 0;
	line-height: 1.2;
	color: #5BB8F5;
	letter-spacing: 1px;
	font-weight: normal;
}

h2 {
	font-size: 16px;
	margin: 25px 0 6px;
	line-height: 22px;
	color: #5BB8F5;
}

h3 {
	font-size: 22px;
	margin: 16px 0;
	line-height: 26px;
}

img {
	max-width: 100%;
}

p {
	margin-bottom: 16px;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: #679f8b;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	list-style: none;
}

ul li {
	padding-left: 23px;
	margin: 0 0 0 23px;
}

li:before {
	text-indent: -23px;
	content: "\2022";
	color: #242021;
	float: left;
	margin-left: 0;
	font-size: 21px;
	margin-top: 0;
	font-family: Arial, sans-serif;
}

.clearfix {
	clear: both;
	font-size: 0;
	line-height: 0;
	display: block;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		hyphens: auto;
		padding: 16px;
	}

	h1 {
		font-size: 28px;
	}
}