/*Variabelen, om makkelijk te kunnen veranderen*/
:root {
	--header-hover-color: rgb(152, 179, 228);
	--margin-left-right: 20%;
	/*------------palatte-1-------*/

	--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: 1px;

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

body {
	background-image: linear-gradient(#ffffff, #ffebeb);
}

/*----------------------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;
}
/*----------pakketten-------------*/

.pakketten li,
.info li {
	margin-left: 20px;
}

.info li {
	list-style-type: "-";
}

.info h2 {
	text-align: center;
}

.info {
	border-radius: 10px;
	margin-top: 50px;
	margin-left: 10%;
	margin-right: 10%;
	padding-bottom: 10px;
	padding-top: 10px;
	display: flex;
	justify-content: center;
	border-bottom-style: solid;
	border-width: 1px;
	background-color: var(--color4);
	box-shadow: 3px 3px 1px black;
}
#pakket {
	box-shadow: 6px 6px 1px black;
	align-items: center;
	display: flex;
	justify-content: start;
	flex-direction: column;
	margin-left: var(--margin-left-right);
	margin-right: var(--margin-left-right);
	width: calc(100% - var(--margin-left-right) * 2);
	margin-bottom: 50px;
	border-radius: 10px;

	border-width: 1px;
	background-color: var(--color5);
}

.contents {
	padding-left: 3%;
	padding-right: 3%;
}

#pakket h3 {
	border-width: 1px;
	border-top-style: solid;
	text-align: start;
	width: 100%;
	margin-bottom: 1%;
}

.pakketten {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#button {
	box-shadow: 2px 2px 2px black;
	transition: 0.15s;
	background-color: greenyellow;
	padding-left: 60%;
	padding-right: 60%;
	margin-left: -60%;
	text-decoration: none;
	color: black;
	border-radius: 5px;
	border-style: none;
	font-size: x-large;
}

#button:hover {
	box-shadow: 3px 3px 4px black;
	background-color: rgb(161, 240, 42);
	color: black;
}
