@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font: 1em/1.5 "Helvetica", Arial, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 800px;
	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;
}

p span,
li span {
	white-space: nowrap;
}

article p {
	padding-bottom: 1rem;
}

h1 {
	font-size: 2rem;
	line-height: 1.3;
	font-weight: 400;
	padding-bottom: 1rem;
}

h2 {
	font-size: 1.4rem;
	line-height: 1.3;
	font-weight: 400;
	padding: 1rem 0 0.5rem;
	text-transform: uppercase;
}

ul {
	padding: 0 0 1rem 2rem;
}

.info {
	display: flex;
	column-gap: 1rem;
}

header {
	padding: 2rem 2rem 1rem;
}

article {
	padding: 1rem 2rem 0;
}

footer {
	padding: 0 2rem 2rem;
}

@media only screen and (max-width: 799px) {

	#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: 704px) {
	header {
		padding: 2rem 1rem 1rem;
	}

	article {
		padding: 1rem 1rem 0;
	}

	footer {
		padding: 0 1rem 1rem;
	}

}

@media only screen and (max-width: 560px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.2rem;
		padding: 0.5rem 0;
	}

	header {
		text-align: center;
	}

	.info {
		flex-direction: column;
	}

	ul {
		padding: 0 0 1rem 1rem;
	}
}