* {
	box-sizing: border-box;
}

body {
	font-family: Tahoma, Verdana, sans-serif;
	background-color: rgb(0, 0, 51);
}

.grid-container {
	display: grid;
	grid-template-columns: 80px 150px auto;
	grid-template-rows: 55px auto;
	grid-template-areas:
		'knop header vulHor'
		'main main main'
}

.logo {
	grid-area: logo;
	display: none;
}

.logo img {
	width: 100%;
	height: auto;
}

.menuknop {
	grid-area: knop;
	height: 50px;
	width: 79px;
	font-size: 1.25em;
	border-width: 2px;
	border-radius: 8px;
	border-color: rgb(153, 0, 102);
	background-color: rgb(0, 0, 51);
	color: rgb(153, 0, 102);
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.titel {
	grid-area: header;
	background-color: rgb(0, 0, 51);
	justify-content: center;
}

.titel img {
	width: auto;
	height: 90%;
	padding-left: 8px;
}


.stralen {
	grid-area: vulHor;
	background: rgb(0, 0, 51);
	height: 55px;
}

.stralen img {
	height: 90%;
	width: 100%;
}

.menu {
	grid-area: left;
	display: none;
	width: 160px;
	background-color: rgb(0, 0, 51);
	font-size: 1.25em;
}

.menu a {
	display: block;
}

.menu a.pagina_knop:link {
	text-decoration: none;
	display: block;
	height: 42px;
	padding: 0px 1px 0px 1px;
	color: rgb(153, 0, 102);
	font-weight: 700;
	text-align: right;
	border-style: none;
	cursor: pointer;
}

.menu a.pagina_knop:visited {
	color: rgb(140, 0, 90);
}

.menu a.pagina_knop:hover {
	color: rgb(204, 0, 120);
}

.menu a.pagina_knop:active {
	color: rgb(0, 135, 135);
}

.menu a.pagina_kop_knop:link {
	text-decoration: none;
	display: block;
	height: 42px;
	padding: 0px 1px 0px 1px;
	color: rgb(255, 153, 51);
	font-weight: 700;
	text-align: right;
	border-style: none;
	cursor: pointer;
}

.menu a.pagina_kop_knop:visited {
	color: rgb(255, 160, 51);
}

.menu a.pagina_kop_knop:hover {
	color: rgb(255, 204, 0);
}

.menu a.pagina_kop_knop:active {
	color: rgb(0, 135, 135);
}

.page {
	grid-area: main;
}

.social-icons {
	display: flex;
	flex-direction: row;
	float: right;
}

.social-icons>div {
	width: 32px;
	margin: 2px;
}


.talen a:link {
	position: absolute;
	text-decoration: none;
	color: rgb(153, 0, 102);
	font-size: 1.25em;
	font-weight: 700;
	right: 6px;
	top: 32px;
	z-index: 1000;
}


.talen a:hover {
	color: rgb(0, 186, 179);
}




@media only screen and (min-width: 768px) {
	body {
		margin: 0;
	}

	.grid-container {
		grid-template-columns: 160px 260px auto;
		grid-template-rows: 100px auto;
		grid-template-areas:
			'logo header vulHor'
			'left main main'
	}

	.logo {
		display: block;
	}

	.logo img {
		float: right;
		height: 100%;
		width: auto;
	}

	.stralen {
		height: 90px;
		width: 100%;
	}

	.titel img {
		width: 235px;
		height: auto;
		padding-top: 10px;
	}

	.menu {
		display: block;
		margin-top: 12px;
	}

	.menuknop {
		display: none;
	}

	.talen a:link {
		top: 48px;
	}
}

@media only screen and (min-width: 1080px) {
	.grid-container {
		grid-template-columns: 160px 280px auto;
		grid-template-rows: 150px auto;
	}

	.titel img {
		width: 285px;
	}

	.stralen img {
		height: 140px;
		width: 100%;
	}

	.talen a:link {
		top: 110px;
		font-size: 1em;
	}

	.menu {
		font-size: 1em;
	}
}