/*Variabelen, om makkelijk te kunnen veranderen*/
:root {
	--header-hover-color: rgb(56, 164, 197);
	--color1: #e9e9eb;
	--color2: #d6efff;
	--color3: #fed18c;
	--color4: #d4d4d4;
	--color5: #dbee8c;
}

/*---------------Globale pagina settings--------------*/

* {
	/*verberg scrollbar voor meerdere browsers*/
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */

	/*zorgt voor een aangrenzende header*/
	margin: 0;
	padding: 0;

	/*zet het algemene pagina font*/
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: FFEBEB;
}
body {
	background-color: whitesmoke;
}

/*----------------------Header----------------------*/

.headerTop {
	top: 0;
	padding: 10px 16px;
	background: rgb(156, 182, 249);
	background: linear-gradient(
		90deg,
		rgba(156, 182, 249, 1) 0%,
		rgba(32, 184, 194, 1) 100%
	);
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
		rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.headerBottom {
	top: 0;
	position: sticky;
	background: rgb(156, 182, 249);

	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
		rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	justify-content: space-around;
	display: flex;
	background-color: #2af2ff;
	width: 100%;
}

.listHeader {
	width: 100%;
	transition: 0.1s;
}

.listHeader a {
	transition: 0.3s;
	display: block;
	color: black;
	text-align: center;
	text-decoration: none;
	padding: 0 9.5%;
	padding-top: 2%;
	padding-bottom: 2%;
	border-left: 1px solid black;
}

.listHeader:hover {
	background-color: rgb(152, 179, 228);
}

.listHeader a:hover {
	box-shadow: 0px 3px 4px black;
}

/*----------------------contact----------------------*/

/*---main div-----*/
.container {
	display: flex;
	justify-content: center;
}

.container #main {
	box-shadow: 4px 4px 1px;
	width: 100%;
	text-align: left;
	margin-left: 25%;
	margin-right: 25%;
	margin-top: 5%;
	height: 400px;
	border-radius: 15px;
	background-color: var(--color1);
}

#main h2 {
	text-align: center;
	font-weight: 500;
}

.container #inside {
	box-shadow: 4px 4px 1px;
	height: 92%;
	display: flex;
	flex-direction: column;
	background-color: var(--color4);
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}
form {
	width: 95%;
}
/*---Input/Textarea opmaak-----*/
#input,
textarea {
	border-radius: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 1%;
	padding-right: 1%;
	background-color: var(--color1);
	width: 90%;
	border-style: solid;
	border-width: 1px;
	resize: none;
}

.textarea {
	width: 100%;
	height: 30%;
}

#textarea {
	height: 80%;
	display: flex;
	justify-content: center;
	padding-left: 1%;
}

ul {
	list-style: none;
}

.naam #Tussenvoegsel {
	width: 30%;
}

.naam #Achternaam {
	margin-left: 15px;
}
.date {
	display: flex;
}
.row {
	display: flex;
}
.row p {
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 10px;
}
.date {
	margin-bottom: 20px;
	margin-left: 5%;
	margin-right: 5%;
	width: 95%;
	display: flex;
	list-style: none;
}

#inside .naam,
.contact {
	margin-bottom: 20px;
	margin-left: 5%;
	width: 95%;
	display: flex;
	list-style: none;
}

#inside ul li {
	margin-top: 5px;
	width: 100%;
}

/*---Verzend knop positie-----*/
.button1 {
	display: flex;
	justify-content: center;
}

.button1 input {
	border-style: none;
}

.button {
	width: 100%;
	display: flex;
}
/*---opmaak button---*/
#button {
	width: 80%;
	background-color: orange;
	transition: 0.15s;
	border-radius: 7px;
	padding: 5px 0%;
	box-shadow: 2px 2px 2px black;
	transition: 0.15s;
	text-decoration: none;
	color: black;
	text-align: center;
}

/*---main div---*/
