@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
:root {
	font-size: 16px;
}
* {
	box-sizing: border-box;
	margin: 0;
}
html {
	min-height: 100%;
}
body {
	font: 1em/1.3em  "League Spartan", sans-serif;
	color: #000;
}
#wrapper {
	position: relative;
	margin: 1rem auto;
	overflow: hidden;
	max-width: 778px;
	border: solid 1px #C00000;
	background: #fff;
	padding: 1rem 3rem 3rem;
}
h1,h2,h3{
	text-align: center;
}
h1 {
	margin: 0 0 1rem;
	font-size: 1em;
	line-height: 1.1em;
}
h1 small {
	font-size: 0.7em;
}
h2{
	font-size: 1.8em;
	line-height: 1.3;
	padding: 1.5rem 0;
}
h3{
	font-size: 1.188em;
	line-height: 1.3;
}
h4{
	font-size: 1em;
	line-height: 1.3;
	text-decoration: underline;
	padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
}
ul {
	padding: 0;
	list-style: none;
}
li {
	padding: 0 0 0 60px;
}
ul li:before {
	content: "\2022";
	font-size: 1em;
	margin: 0 0 0 -30px;
	float: left;
}
p,ul {
	padding-bottom: 1rem;
	text-align: justify;
}
header {
	padding: 0;
	display: flex;
	justify-content: center;
}
header p{
	padding-right: 1.5rem;
}
header span{
	display: block;
	font-size: 0.813em;
	line-height: 1.2;
	text-align: center;
}
article {
	padding: 0;
}
.flexbox{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section{
	width: 47%;
}
footer p{
	position: absolute;
  bottom: 1rem;
  left: 25.5rem;
}
img {
	max-width: 100%;
	height: auto;
	
}
@media only screen and (max-width:777px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}
	article p,ul{
		text-align: left;
	}
	header p{
		text-align: center;
	}
	footer p{
		position: static;
	}
	section{
		width: 100%;
	}
	li{
		padding-left: 30px;
	}
	article br{
		display: none;
	}
}
