body {
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw; /* Zorg ervoor dat de breedte ook 100% is */
	overflow: hidden; /* Voorkom scrollbars */
	background: url("../Foto's/12.jpg") no-repeat center center/cover;
	background-color: black;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background-color: black;
	z-index: 100;
	pointer-events: none;
}

body.video-playing::before {
	display: none;
}

.container {
	position: absolute;
	top: 100px;
	left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: none;
	z-index: 10;
	
}

.container h1 {
	margin: 0;
	font-size: 7em;
	color: white;
}

.container img {
	display: none;
}

.container button {
	padding: 15px 40px;
	font-size: 1.2em;
	font-family: 'Abril Fatface', cursive;
	color: white;
	background-color: rgba(0, 0, 0, 0.7);
	border: 2px solid white;
	cursor: pointer;
	margin-top: 20px;
}

.container button:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.nav {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: black;
}

#nav {
	position: absolute;
	top: 10px;
	left: 0px;
	z-index: 101;
}

#nav nav {
	background-color: black;
	padding: 10px 20px;
}

#nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	width: calc(100vw - 40px);
}

#nav li {
	margin: 0;
	padding: 0;
}

#nav li:last-child {
	margin-left: auto;
	margin-right: 1vw;
}

#nav li:last-child a {
	color: #880606;
}

#nav a {
	color: #C9C9C9;
	font-size: 3.8em;
	font-weight: bold;
	text-decoration: none;
}

#video-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%; 
	z-index: 999;
	background-color: black;
}

#video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#video::-webkit-media-controls {
  display: none !important;
}

#video::-webkit-media-controls-enclosure {
  display: none !important;
}