@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	line-height: 23px;
	color: #242021;
	font-weight: 400;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	border: solid 4px #c3cf21;
	overflow: hidden;
	position: relative;
	background: #eaefbf url(../images/background.jpg) top center no-repeat;
	background-size: 100% 100%;
}

header {
	padding: 16px;
}

article {
	padding: 0 20px 26px;
	position: relative;
}

article figure {
	position: absolute;
	bottom: 0;
	right: 20px;
}

footer {
	padding: 0 20px 16px;
	display: flex;
	gap: 16px;
}

footer p {
	font-size: 1.03125rem;
}

span {
	white-space: nowrap;
}

:is(h1, h2, ul) {
	font-size: 20px;
	line-height: 1.35;
}

h1 {
	font-weight: 400;
	text-align: center;
}

:is(strong, h2) {
	font-weight: 700;
}

h2 {
	color: #c3cf21;
}

ul {
	list-style: none;
	margin: 0 0 30px;
	position: relative;
	z-index: 99;
}

ul li {
	padding-left: 20px;
	position: relative;
}

li:before {
	text-indent: -20px;
	content: "\2022";
	color: #c3cf21;
	position: absolute;
	font-size: 32px;
	margin-top: -6px;
	font-family: Arial, sans-serif;
}

img {
	max-width: 100%;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
		background-size: auto;
	}

	:is(p, ul, h1) {
		hyphens: auto;
		text-wrap: pretty;
	}

	article {
		padding: 0 16px 16px;
	}

	article figure {
		position: static;
		display: flex;
		justify-content: center;
	}

	footer {
		flex-direction: column;
		align-items: center;
	}

	.logo {
		margin: 20px 0 0;
		display: flex;
		justify-content: center;
	}

	:is(footer p, h2, ul) {
		text-align: center;
	}

	ul li {
		padding-left: 10px;
	}

	.mobile {
		display: none;
	}
}