:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#wrapper {
	margin: 1rem auto;
	border: 1px #000 solid;
	max-width: 790px;
	color: #000;
	position: relative;
	padding: 32px 78px;
	background-color: #FFF;
	line-height: 22px;
	font-size: 15px;
	font-family: "Roboto", sans-serif;
	overflow: hidden;
}

header{
	display: flex;
	gap: 10px;
}

header p span{
	white-space: nowrap;
}

p {
	margin-bottom: 16px;
}

h1 {
	margin: 30px 0;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
}

h1 span {
	display: block;
	font-size: 16px;
	line-height: 20px
}

h2 {
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 16px;
}

h3 {
	font-size: 14px;
	margin: 0 0 16px;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a ins {
	color: #0000ff;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

ul {
	margin-bottom: 30px;
	list-style: none;
}

ul li {
	padding-left: 46px;
	position: relative;
}

ul li:before {
	content: '-';
	position: absolute;
	top: 8px;
	left: 26px;
	color: #000;
	font-size: 0;
	width: 6px;
	height: 6px;
	background: #000;
	border-radius: 100%;
}

header {
	display: flex;
	gap: 10px;
}

header span{
	margin-left: 10px;
}

footer{
	text-align: right;
}

@media only screen and (max-width: 790px) {
	#wrapper {
		border: none;
		font-size: 14px;
		line-height: 18px;
		padding: 1rem;
		text-align: left;
	}

	header {
		margin-bottom: 30px;
	}

	header span{
		margin-left: 0;
	}

	h1 {
		font-size: 20px;
		line-height: 24px
	}

	h1 span {
		font-size: 14px;
		line-height: 18px
	}

	article br {
		display: none
	}

	header img {
		margin-right: 0
	}

	ul li {
		padding-left: 20px;
	}

	ul li:before {
		top: 6px;
		left: 0;
	}
}

@media only screen and (max-width:670px) {
	header{
		text-align: center;
		flex-direction: column;
	}
	aside {
		float: none !important;
		width: auto !important;
		padding: 0 !important;
	}

	aside:nth-of-type(2) p:first-of-type {
		padding-bottom: 20px
	}
}