* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
}

#wrapper {
	max-width: 860px;
	margin: 12px auto;
	border: 1px solid #000;
	padding: 100px;
	background: #fff;
	overflow: hidden;
}

header {
	padding: 0 0 30px;
}

p {
	margin: 0 0 16px;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 16px 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
}

a {
	color: #000;
	text-decoration: none;
}

ul {
	padding: 0 0 16px 25px;
	list-style: none;
}

ul li {
	padding-left: 24px;
	position: relative;
}

li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 7px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

hr {
	border: none;
	margin: 0 0 16px;
	height: 1px;
	background: #000;
}

@media all and (max-width:859px) {
	#wrapper {
		margin: 0;
		padding: 15px;
		border: none;
	}

	:is(ul, ul li) {
		padding-left: 15px;
	}
}