@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	font-size: 16px;
}
* {
	box-sizing: border-box;
	margin: 0;
}
html {
	min-height: 100%;
}
body {
	font: 1em/1.3em  "Roboto Condensed", sans-serif;
	color: #000;
}
#wrapper {
	position: relative;
	margin: 1rem auto;
	overflow: hidden;
	max-width: 550px;
	border: solid 1px #000;
	background: #fff;
	padding: 1rem 1rem 0;
}
p {
	padding-bottom: 0.7rem;
	text-align: justify;
}
h1 {
margin: 0;
  font-size: 2.2em;
  line-height: 1.1em;
  text-align: center;
}
h1 small {
	font-size: 0.45em;
	font-weight: 400;
}
.center{
	text-align: center;
}
h2{
	font-size: 1em;
	line-height: 1.3;
}
section{
	padding: 0.5rem 1rem 0;
	margin: 0 -1rem 0.7rem;
	background: #D1D2D4;
}
:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
}
ul {
	padding: 0 0 0.7rem;
	list-style: none;
}
li {
	padding: 0 0 0 16px;
}
ul li:before {
	content: "\2022";
	font-size: 1em;
	margin: 0 0 0 -16px;
	float: left;
}
li span{
	display: inline-block;
}

footer {
	position: absolute;
  right: 1rem;
  bottom: 0.5rem;
}
img {
	max-width: 100%;
	height: auto;
	
}
@media only screen and (max-width:549px) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}
	p {
		text-align: left;
	}
	p :is(a,span){
		display: inline-block;
	}
	footer {
		position: static;
		display: flex;
		justify-content: center;
	}
	.hide_m,h1 br{
		display: none;
	}
	h1{
		font-size: 1.8em;
	}
	h1 small{
		font-size: 0.6em;
	}
}
