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

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

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

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

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;
}

.provinciesimg {
	width: 30%;
	margin-left: auto;
	margin-right: auto;
}

.grotestad {
	display: flex;
}

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

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

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

.tableheader {
	text-align: center;
	font-size: 25px;
}

table {
	width: 50%;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

th, td {
	border: 1px solid black;
	padding: 8px;
	text-align: left;
}

th {
	background-color: #ddd;
}

tr:nth-child(even) {
  background-color: #fff;
}

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: 800px) {
	.grotestadrechts, .grotestadlinks {
		width: 100%;
		border-radius: 5px;
		margin: 0px;
		border-style: solid;
		border-color: #aaa;
	}
	.grotestad {
		display: inline;
	}
	nav, header {
		height: auto;
	}
}