﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
}

#wrapper {
	max-width: 430px;
	margin: 0.75rem auto;
	padding: 16px;
	border: solid thin #242021;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	background-color: #fff;
}

header {
	margin: 0 0 16px;
}

h1 {
	font-size: 20px;
	margin: 16px 0;
	line-height: 24px;
	padding-left: 20px;
}

h1:before {
	text-indent: -20px;
	content: "\2022";
	color: #242021;
	float: left;
	font-size: 25px;
	font-family: Arial, sans-serif;
}

img {
	max-width: 100%;
}

p {
	text-align: justify;
}

a {
	color: #242021;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

@media screen and (max-width:428px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		hyphens: auto;
	}

	p {
		text-align: left;
	}

	h1 br {
		display: none;
	}
}