* {
  box-sizing: border-box;
}
body {
	background-color: var(--cream);
}


#container {
	display: grid;
	grid-template-columns: auto 50% auto;
/*	width: 800px;*/
/*	margin: auto;*/
}

.marge {
}

.welkom {
	background-color: var(--yellow);
	border-radius: 30px;
	padding: 20px;
	font-family: 'Brush Script MT', cursive, Helvetica, sans-serif;
}

.ledeninfo-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background-color: var(--yellow);
	margin: auto;
	justify-content: center;
	padding: 20px;
}

.pdf-knop1 {
	/*display: block;*/
	width: 220px;
	height: 80px;
	color: var(--white);
	background-color: var(--orange);
/*	border: 0px solid blue;*/
	border-radius: 10px;
	box-shadow: 5px -5px 10px brown;
	text-align: center;
	text-decoration: none;
   line-height: 2.6;
	font-family: 'Brush Script MT', cursive, Helvetica, sans-serif;
	font-size: 25px;
	text-shadow: 2px 2px black, 0px 0px 8px black;
}

.pdf-knop1>a:hover {
	color: var(--cream);
}

.ledeninfo-conainer>a {
	color: red;
}


/*button {
	width: 220px;
	height: 80px;
/*	color: green;
	background-color: var(--orange);
	border: 0px solid blue;
	border-radius: 10px;
	box-shadow: 5px -5px 10px brown;
}*/

/*.pdf-knop>a {
	color: var(--white);
	text-decoration: none;
	font-family: 'Brush Script MT', cursive, Helvetica, sans-serif;
	font-size: 25px;
	text-shadow: 2px 2px black, 0px 0px 8px black;
}*/

a:hover {
	color: var(--cream);
}

p {
   line-height: 1.5;
}

#form {
	position: relative;
	left: 30px;
}

/*   Uit ChatGPT*/
/*.doc-knop {
  padding: 14px 16px;
  background-color: #2b6cb0;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}*/

/* Overlay */
/*.overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}*/

#js-knop {
	color: var(--white);
	font-family: 'Brush Script MT', cursive, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 25px;
	text-shadow: 2px 2px black, 0px 0px 8px black;
   cursor: pointer;
}

#js-knop:hover {
	color: var(--cream);
}

/* Popup */
.popup {
  background: white;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  border-radius: 8px;
  justify-content: center;
}

/* Sluitknop */
/*.sluit-knop {
  margin-top: 16px;
  padding: 10px 14px;
  background-color: #4a5568;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}*/

#overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	bottom: 0px;
/*	left: 50%;
	top: 300px;*/
	background-color: black;
	opacity: 0.5;
/*	z-index: 999;*/
/*	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0%;
   background-color: rgba(0,0,0,0.5);	
   cursor: pointer;*/
}

#popup-optredens {
	display: none;
	grid-template-columns: 100px auto;
	position: fixed;
	left: 50%;
	top: 50%;
   transform: translate(-50%, -50%);
/*   inset: 0;*/
	width: 500px;
/*	font-family: Arial, Helvetica, sans-serif;*/
	color: var(--white);
	background-color: #10688e;
	padding: 10px 20px 20px 20px;
	border: 8px solid #0b4964;
	border-radius: 20px;
/*	align-items: center;
	justify-content: center;*/
  text-align: center;
  box-shadow: 20px 20px 50px black;
}

#popup-optredens>a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50px;
}

#KMlogo>img {
	width: 100px;
	position: relative;
	top: 30px;
}

#KMtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: white;
}

#KMtext>a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-size: bold;
	
}

@media only screen and (max-width: 1000px) {
	#container {
		grid-template-columns: auto 70% auto;
	}
}

@media only screen and (max-width: 800px) {
	#container {
		grid-template-columns: auto 80% auto;
	}
}

@media only screen and (max-width: 600px) {
	#container {
		grid-template-columns: auto 95% auto;
	}
}
