/* van w3schools, pagina over responsive design */
* {
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	margin: 0px;
	background: linear-gradient(90deg, #eee, #ddd)
}

header {
	height: 150px;
	padding: 50px;
}

.headertext {
	text-align: center;
	margin: auto;
	font-size: 50px;
}

nav {
	background: linear-gradient(90deg, #d3d3d3, #cccccc);
	width: 100%;
	height: 50px;
	text-align: center;
	padding: 15px;
}

nav a {
	margin: 10px;
	text-decoration: none;
	color: #000;
	transition: .25s;
}

nav a:hover {
	color: #888;
}

.pageheader {
	text-align: center;
	margin-top: 40px;
	font-size: 30px;
}

.infdiv {
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 40px;
	background-color: #f2f2f2;
	padding: 25px;
	text-align: left;
	border-radius: 10px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.25);
}

.divheader {
	font-size: 25px;
}

.divtext {
	font-size: 17px;
}

.divdisplay {
	display: flex;
}

.divonderin {
	display: flex;
	justify-content: center;
}

.displayimg {
	width: 20%;
	margin-left: 20px;
	border-radius: 5px;
	border-style: solid;
	border-color: #aaa;
}

.displayimg2 {
	width: 30%;
	margin-right: 20px;
	border-radius: 5px;
	border-style: solid;
	border-color: #aaa;
}

.displayimg3 {
	width: 25%;
	margin-left: 20px;
	border-radius: 5px;
	border-style: solid;
	border-color: #aaa;
}

.displayimg4 {
	width: 25%;
	margin-right: 20px;
	border-radius: 5px;
	border-style: solid;
	border-color: #aaa;
}

.displayimg5 {
	width: 30%;
	margin-left: 20px;
	border-radius: 5px;
	border-style: solid;
	border-color: #aaa;
}

hr {
	width: 90%;
	margin-top: 30px;
	margin-bottom: 30px;
}

.video {
	border-radius: 10px;
	width: 600px;
	height: 300px;
}

footer {
	background: linear-gradient(90deg, #d3d3d3, #cccccc);
	width: 100%;
	height: 50px;
	text-align: center;
	padding: 20px;
	margin-top: 40px;
}

/* van w3schools.com, pagina over responsive design */
@media (max-width: 600px) {
  nav, header {
		height: auto;
	}
}