body
 {
background-image: url(images/hout.webp);
background-size: cover;
background-position: center;
height: 100px;
color: white;
margin: 0px;
padding: 0PX;
}

nav {
  background-color: olive; 
  padding: 50px 100px;
}

nav ul {
  list-style: disc; 
  display: flex;    
  margin: 0;
  padding: 0;
  gap: 20px;       
}

nav ul li a {
  color: white;           
  text-decoration: none;  
  padding: 8px 12px;
  border-radius: 4px;     
  transition: background 0.3s; 
}

nav ul li a:hover {
  background-color: #555; 
}
p {
  font-family: Arial, Helvetica, sans-serif; /* Standaard sans-serif */
}

h1 {
  font-family: 'Times New Roman', serif; /* Serif lettertype */
}

code {
  font-family: 'Courier New', monospace; /* Monospace voor code */
}
