@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: 'Arial', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	background-color: #fff;
}

img {
	max-width: 100%;
	height: auto;
	display: block
}

#wrapper {
	position: relative;
	max-width: 940px;
	margin: 1rem auto 3.125rem;
	padding: 0;
	overflow: hidden;
	background: url("../images/border.jpg") no-repeat bottom left;
	background-size: contain;
	box-shadow: 0.1875rem 0.1875rem 0.6875rem 0.125rem #939095;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	text-align: justify;
	margin: 0 0 .625rem;
	hyphens: auto
}

span {
	white-space: nowrap;
}

.bigger {
	font-size: 1.25rem;
	font-weight: 900;
	margin: 0 0 1.5rem;
}

ul {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

ul li {
	padding: 0 0 0 0.625rem;
}

ul li:before {
	content: "\2022";
	float: left;
	margin: 0 0 0 -0.625rem;
	font-size: 0.75em;
	line-height: 1;
	position: relative;
	top: 8px;
}

h1 {
	font-size: 2rem;
	line-height: 1.4;
	margin: 1.5rem 0 1rem;
	color: rgb(50, 125, 186);
}

h2 {
	font-size: 1.125rem;
	margin: 0 0 1rem;
}

header {
	display: flex;
	justify-content: end;
}

article {
	padding: 2.125rem 2.938rem 2.875rem;
}

p.web {
	text-align: center;
	margin: .625rem 0;
}

footer {
	background-color: #fff;
	border-top: 0.0625rem solid #0091C8;
	padding: .312rem 0;
	display: flex;
	justify-content: center;
	column-gap: .312rem;
	margin: 6rem 0 0
}

footer>a {
	background-color: #0091C8;
	font-size: 1rem;
	width: 11.25rem;
	height: 2.375rem;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer>a span {
	color: #fff;
}

@media only screen and (max-width: 939px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		background: #fff;
		box-shadow: none;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		text-align: left;
	}

	h1 {
		font-size: 1.7rem;
		line-height: 1.2;
		margin: 1rem 0;
	}

	h2 {
		margin: 0 0 0.3125rem;
	}

	.bigger {
		font-size: 1.15rem;
		margin-bottom: 1rem;
	}

	header {
		padding: 1rem 1rem 0
	}

	article,
	footer {
		padding: 1rem;
	}

	footer {
		margin: 0
	}

	p.web {
		margin: 0
	}
}