* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

#wrapper {
	margin: 0.75rem auto;
	border: 3px #0364ac solid;
	max-width: 630px;
	color: #231F20;
	position: relative;
	background-color: #FFFFFF;
	font-family: "Roboto Serif", serif;
	line-height: 20px;
	font-size: 15px;
	text-align: left;
	overflow: hidden;
}

h1 {
	font-size: 28px;
	line-height: 1.3;
	text-align: center;
	color: #fff;
}

h1 span {
	display: block;
	font-size: 20px;
}

h2 {
	font-size: 15px;
	width: 155px;
}

a {
	color: #0364ac;
	text-decoration: underline;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

ul {
	margin-bottom: 5px;
	list-style: none;
	width: calc(100% - 160px);
}

ul li {
	position: relative;
	padding-left: 20px;
}

ul li:before {
	content: "\2022";
	color: #0364ac;
	font-size: 22px;
	position: absolute;
	top: 0;
	left: 0;
	font-family: Arial, Helvetica, sans-serif;
}

header {
	background: #0364ac;
	padding: 7px 10px;
}

article {
	padding: 10px 10px 2px;
}

.box {
	display: flex;
}

footer {
	display: flex;
	padding: 0 10px 6px;
	align-items: flex-end;
	justify-content: space-between;
}

@media only screen and (max-width:628px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(header, article, footer) {
		padding-left: 16px;
		padding-right: 16px;
	}

}

@media only screen and (max-width:575px) {
	.box {
		flex-direction: column;
	}

	ul {
		width: 100%;
	}

	br {
		display: none;
	}

	footer {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

}