﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
	background: #F6F7F8;
}

#wrapper {
	max-width: 785px;
	margin: 0.75rem auto;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

article {
	padding: 70px;
	border-radius: 10px;
	background-color: #fff;
}

.logo {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 50px;
}

.logo img {
	width: 200px;
}

article h2 {
	text-decoration: underline;
}

footer a {
	background: #23afff;
	color: #fff;
	border-radius: 10px;
	display: block;
	width: 180px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 0 auto;
	font-weight: bold;
}

footer a:hover {
	background: #044266;
	text-decoration: none;
}

section {
	margin: 10px 0 0;
	padding: 20px 70px;
	border-radius: 10px;
	background-color: #fff;
}

h1 {
	font-size: 17px;
	margin: 16px 0;
	line-height: 21px;
	text-decoration: underline;
}

h2 {
	font-size: 16px;
	margin: 16px 0;
	line-height: 20px;
}

img {
	max-width: 100%;
}

p {
	margin-bottom: 16px;
	text-align: justify;
	hyphens: auto;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: #242021;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	margin: 0 0 0 20px;
	list-style: none;
}

ul li {
	padding-left: 20px;
	text-align: justify;
	hyphens: auto;
}

li:before {
	text-indent: -20px;
	content: "\2022";
	color: #242021;
	float: left;
	margin-left: 0;
	font-size: 25px;
	margin-top: 0;
}

@media screen and (max-width:783px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		hyphens: auto;
	}

	article, section {
		padding: 16px;
	}

	p, ul li {
		text-align: left;
	}
}