html,
body {
	height: 100%;
}

#container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 800px;
	width: 100%;
}

body {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

footer {
	display: flex;
	align-items: center;
	width: 100%;
}

.page-header {
	display: flex;
	align-items: center;
	width: 100%;
	background: lightgreen; /* #1c87c9; */
	color: black; /* #fff;*/
}

.header-icon {
	display: block;
}

.header-icon img {
	width: auto;
	height: 90px;
	box-shadow: 0 0 3px gray;
}

.header-name {
	display: inline;
}

.header-title h1 {
	margin-top: 0;
	margin-bottom: 0;
}

.header-subtitle h2 {
	margin-top: 0;
	margin-bottom: 0;
}

.header-menu nav ul {
	justify-content: flex-end;
}

.header-menu nav ul li {
	display: inline-block;
	padding: 0 10px;
	list-style: none;
}

.header-menu nav ul li a:active {
	color: black;
	font-weight: bold;
}

.active-page-link {
	color: darkgreen;
	font-weight: bold;
}

.header-menu nav ul li a:hover {
	color: white;
	background-color: darkgreen;
}

h1 {
	color: darkgreen;
}

h2 {
	color: darkgreen;
	margin: 0 0 8px;
}

h3 {
	color: darkgreen;
}

h4 {
	color: darkgreen;
}

h5 {
	color: darkgreen;
}

h6 {
	color: darkgreen;
}

aside {
	flex: 0.4;
	height: 165px;
	padding-left: 15px;
	border-left: 1px solid #666;
}

dl {
	background-color:whitesmoke;
}

dt {
	font-weight: bold;
}

form {
	background-color: lemonchiffon;
}

input[type="text"], input[type="email"], input[type="tel"] {
	display: block;
	width: 100%;
}

select {
	display: block;
	width: 100%;
}

input[type="submit"] {
	display: block;
	cursor: pointer;
	width: 100%;
	background-color: lightgreen;
}

input[type="reset"] {
	display: block;
	cursor: not-allowed;
	width: 100%;
}

legend {
	font-weight: bold;
}

section {
	flex: 1;
	padding-right: 15px;
}

section:last-of-type {
	padding-bottom: 15px;
}

article p:first-of-type {
	font-weight: bold;
}

article p:last-of-type {
	font-weight: normal; /* we don't want a single p to be bold (correction on p:first-of-type) */
}

footer {
	padding: 0 10px;
	background: #ccc;
}
