@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: local(''), 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-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: local(''), 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;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	line-height: 1.2;
	font-size: 16px;
	color: #231F20;
	font-weight: 400;
}

#wrapper {
	margin: 1rem auto;
	border: 1px #231F20 solid;
	max-width: 615px;
	position: relative;
	padding: 16px;
	background-color: #D9D9D9;
	overflow: hidden;
}

p:not(:last-of-type) {
	padding-bottom: 10px;
}

.center {
	text-align: center;
}

:is(h1, h2, h3, strong) {
	font-weight: 700;
}

h1 {
	margin: -3px 0 15px;
	font-size: 38px;
	text-align: center;
}

p span {
	white-space: nowrap;
}

h2 {
	font-size: 22px;
	margin: 0 0 2px;
}

h3 {
	font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #231F20;
	text-decoration: none;
	white-space: nowrap;
}

img {
	max-width: 100%;
}

ul {
	margin: 0 0 10px;
	list-style: none;
}

ul li {
	padding-left: 18px;
}

ul li:before {
	content: "\2022";
	float: left;
	font-size: 29px;
	text-indent: -18px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	margin-top: -3px;
}

footer {
	position: relative;
	padding: 2px 0 0;
}

footer p {
	position: absolute;
	text-align: center;
	bottom: 0;
	width: 100%;
	padding: 0 112px 0 90px;
}

.logo {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

h1 span {
	font-size: 22px;
	line-height: 22px;
	display: block;
}

@media only screen and (max-width:614px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(ul, p) {
		text-wrap: pretty;
	}

	p:not(:last-of-type) {
		text-align: left;
	}

}

@media only screen and (max-width:590px) {
	footer {
		padding: 0;
	}

	footer p {
		position: static;
		padding: 10px 0;
	}

	h2 {
		text-align: center;
	}

}

@media only screen and (max-width:570px) {
	ul {
		margin-left: 0;
	}

	.logo {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

}