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

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

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

header {
	height: auto;
	padding: 100px;
	text-align: center;
}

.aboveheadertext {
	font-size: 30px;
	color: black;
}

.headertext {
	margin-top: -10px;
	margin-bottom: 150px;
	font-size: 50px;
	color: black;
}

.belowheadertext {
	margin-bottom: 50px;
	font-size: 20px;
	color: black;
}

.beginontdekken {
	background-color: white;
	width: 100px;
	height: 15px;
	color: black;
	border-radius: 10px;
	padding: 15px 60px;
	text-decoration: none;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.25);
	transition: 0.5s ease;
	/*hiervoor had ik aan chatgpt gevraagd hoe ik ervoor kon zorgen dat de <a> tag op een regel blijft.*/
	white-space: nowrap;
}

.beginontdekken:hover {
	background-color: #fafafa;
	text-decoration: underline;
}

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

.divholder {
	height: auto;
	margin-left: 50px;
	margin-right: 50px;
	/*de twee attributes hieronder heb ik geleerd en gevonden in de w3schools pagina over css grid layout*/
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	/*ik moest wel aan chatgpt vragen hoe ik er voor kon zorgen dat elke div de zelfde grootte had. daar komt die 1fr vandaan*/
}

.griddiv {
	margin: 25px;
	background-color: #f2f2f2;
	padding: 25px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.25);
	transition: 0.5s ease;
}

.griddiv:hover {
	transform: scale(0.975);
}

.divheader {
	font-size: 25px;
}

.divtext {
	font-size: 17px;
	margin-bottom: 40px;
}

.bezoekbutton {
	background-color: white;
	width: 75px;
	height: 10px;
	color: black;
	border-radius: 10px;
	padding: 10px 30px;
	text-decoration: none;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.15);
	transition: 0.5s ease;
}

.bezoekbutton:hover {
	background-color: #fafafa;
	text-decoration: underline;
}

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

/* dit heb ik geleerd op w3schools.com, pagina over responsive design */
@media (max-width: 800px) {
	nav {
		height: auto;
	}
	.divholder {
		grid-template-columns: 1fr;
	}
}