
body {
  font-family: 'Georgia', serif;
  margin: 0;
  background-color: #f7efe6;
  color: #4b2e1e;
}
header {
  background-color: #fff;
  border-bottom: 2px solid #e0d5c2;
}
header img.logo {
  height: 70px;
}
nav {
  background-color: #4b2e1e;
  text-align: center;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: inline-block;
}
nav a:hover {
  background-color: #633f2b;
}
.banner {
  width: 100%;
  height: 280px; /* pas eventueel aan */
  background-image: url('banner.png');
  background-size: cover;       /* vult de ruimte zonder vervormen */
  background-position: center;  /* houdt het midden in beeld */
  background-repeat: no-repeat;
  border-bottom: 2px solid #e0d5c2;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
footer {
  background-color: #fff;
  border-top: 2px solid #e0d5c2;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #633f2b;
}
footer a {
  color: #4b2e1e;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
