@import url(normalize.css);
@import url(reset.css);

/* Schakel commentaar in of uit om de verschillende mogelijkheden uit te proberen */

/* Dit is de code voor de lay-out met float en clearfix */
/*main {
	float: left;
	width: 66%;
}
.sidebar {
	float: left;
	width: 34%;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}*/

/* Dit is de code voor het instellen van flexbox op de hoofd- en zijkolom */
.content-container {
	display: flex;
}
main {
	flex: 1;

	display: flex;
	flex-direction: column;
}
.sidebar {
	flex: 1;

	display: flex;
	flex-direction: column;
}

/* Met deze code wordt de zijkolom gecentreerd */
.sidebar {
	/*align-self: center;*/
}

/* Hierna staat de code om de zijkolom weer even hoog te maken en de inhoud ervan te centreren */ 
/* Schakel regel 34 uit */
/* Verwijder in de HTML het commentaar bij de extra div met de klasse sidebar-content */
.sidebar {
	display: flex;
}

.content-block {
	align-self: center;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
	text-align: center;
	color: white;
	background-color: #050c40;
	width: 400px;
	padding: 30px;
}

.image-block {
	align-self: center;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
	text-align: center;
	color: white;
	width: 400px;
}


/********************************
 hierna alleen algemene stijlen 
********************************/
body {
	color: #FFF;
	font-family: Georgia, serif;
	font-style: normal;
	text-decoration: none;
	font-size: 11pt;
	line-height: 16pt;
	margin: 0pt;
}
.content-container {
	margin: 4px 0;
}

.last {
	margin-top: auto;
}

.middle {
	margin-top: auto;
	margin-bottom: auto;
}

.small {
	padding: 5px;
}

header,
main,
.sidebar,
footer {
	padding: 8px;
}
header {
	background-color: white;
}
main {
	background-color: white;
}
.sidebar {
	background-color: white;
}
footer {
	background-color: white;
}

a {
	text-decoration: none;
	color: #fff;
}
h2 {
	color: #F27230;

	font-family: Georgia, serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 15pt;
	line-height: 19pt;
	margin-bottom: 10px;
}

h3 {
	color: #FFF;

	font-family: Georgia, serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 15pt;
	line-height: 19pt;
	margin-bottom: 20px;
	margin-top: 20px;
}

p{
	margin-bottom: 15px;
}