@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #333333;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 .625rem;
}

h1 {
	text-align: center;
	color: #E30613;
	font-weight: 400;
	font-size: 1.75rem;
	margin: 0 0 .625rem;
	line-height: 1.3;
}

h2 {
	color: #E31D26;
	font-weight: 400;
	font-size: 1.125rem;
}

.line {
	list-style: none;
	margin: 0 0 0.625rem;
	padding: 0;
}

.line > li {
	padding-left: .937rem;
}

.line > li:before {
	content: "";
	float: left;
	position: relative;
	width: .312rem;
	height: .062rem;
	background: #000;
	margin-left: -.937rem;
	top: .687rem;
}

.list {
	margin: 0 0 0 .625rem;
	list-style: none;
}

.list li {
	padding-left: 1.25rem
}

.list > li:before {
	content: "➤";
	float: left;
	margin-left: -1.25rem;
	font-size: .875rem;
	line-height: 1.6;
}

header {
	padding: 1.875rem 1.875rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

article {
	padding: .937rem 1.875rem 0;
}

.box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.box p {
	padding: 0 0 0 1.875rem;
	color: #555555;
}

.box p:before {
	content: "";
	float: left;
	position: relative;
	width: .625rem;
	height: .625rem;
	background: #545555;
	margin-left: -.937rem;
	top: .375rem;
}

footer {
	padding: 0 1.875rem;
}

p span {
	white-space: nowrap;
}

@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 1rem;
	}
}

@media only screen and (max-width: 48rem) {
	header {
		padding: 1.25rem 1.25rem 0;
	}

	article {
		padding: .937rem 1.25rem 0;
	}

	footer {
		padding: 0 1.25rem;
	}
}

@media only screen and (max-width: 35rem) {
	.box {
		flex-wrap: wrap;
	}

	.box p {
		margin: 0 0 .625rem;
	}
}