* {
	margin: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

#wrapper {
	margin: 1rem auto;
	border: 2px #231F20 solid;
	max-width: 527px;
	color: #fff;
	position: relative;
	background-color: #0c4488;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	line-height: 20px;
	font-size: 16px;
	text-align: left;
	overflow: hidden;
	padding-bottom: 20px;
}

p {
	margin: 0 0 15px;
	text-align: justify;
}

p.center {
	text-align: center;
	margin: 0 0 32px;
}

h1 {
	margin: 32px 0 24px;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
}

h2 {
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	padding: 10px;
}

a {
	color: #fff;
	text-decoration: underline;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

header {
	text-align: center;
}

figure {
	padding: 6px 16px;
	background: #fff;
}

article {
	padding: 16px 16px 1px;
}

.img {
	display: flex;
	justify-content: center;
	margin: 0 0 30px;
}

footer {
	text-align: center;
	padding: 10px 16px;
	background: #fff;
}

@media only screen and (max-width:525px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	p {
		text-align: left;
	}

	br {
		display: none;
	}
}