@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
}

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:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline;
}

article p {
	padding-bottom: 2rem;
}

h1 {
	font-size: 1.25rem;
	line-height: 1.3;
	padding-bottom: 2rem;
}

h2 {
	font-size: 1.1rem;
	padding-bottom: .3rem;
}

ul {
	list-style: none;
	padding-bottom: 1.25rem;
}

ul li {
	padding: 0 0 0 2.5rem;
}

ul li:before {
	content: url("../images/arrow.png");
	float: left;
	margin-left: -1.25rem;
}

header {
	padding: 3rem;
	background-color: #9d1f2c;
	display: flex;
}

article {
	padding: 3rem 3rem 0;
}

footer {
	padding: 0 3rem 3rem;
}

@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;
	}
}

@media only screen and (max-width: 44rem) {
	header {
		padding: 2rem 1rem;
		justify-content: center;
	}

	h1 {
		text-align: center;
	}

	h1 br {
		display: none;
	}

	article {
		padding: 1.5rem 1rem 0;
	}

	footer {
		padding: 0 1rem 1.5rem;
	}
}

@media only screen and (max-width: 35rem) {

	article p,
	h1 {
		padding-bottom: 1rem;
	}

	ul li {
		padding-left: 1.25rem;
	}
}