* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 800px;
	margin: 16px auto;
	border: 1px solid #000;
	padding: 48px 100px;
	background-color: #fff;
	overflow: hidden;
	position: relative;
}

header {
	padding: 0 0 30px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 16px;
}

.color {
	color: #707070;
}

.font {
	font-size: 20px;
	line-height: 1.2;
}

p {
	margin: 0 0 16px;
	text-align: justify;
	hyphens: auto;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 16px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}

h2 {
	margin: 26px 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	text-decoration: underline;
	color: #707070;
}

h3 {
	margin: 16px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}

a {
	color: #000;
	text-decoration: none;
}

a ins {
	color: #00f;
}

ul {
	margin: 0 0 16px 32px;
	list-style: none;
}

ul li {
	padding-left: 24px;
}

li:before {
	content: "\2022";
	float: left;
	font-size: 26px;
	text-indent: -24px;
}

img {
	max-width: 100%;
}

@media all and (max-width:800px) {
	#wrapper {
		padding: 3% 6%;
		border: none;
		hyphens: auto;
		margin: 0;
	}

	p {
		text-align: left;
	}

	br:not(h3 br) {
		display: none;
	}
}

@media all and (max-width:480px) {
	#wrapper {
		padding: 16px;
	}

	ul {
		margin-left: 0;
	}
}