* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: Broodtekst, sans-serif;
  background: #fdfdfd;
  color: #666;
  line-height: 1.6;
}

nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  color: #eee;
  background: #3399ff;
  background: linear-gradient(to right, #3399ff, #0066aa);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

nav a {
  color: #0366d6;
  text-decoration: none;
  margin-right: 0.3rem;
}

nav a:hover {
  text-decoration: underline;
}

header {
  color: #eee;
  background: linear-gradient(to right, #3399ff, #0066aa);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

header h1, h2 {
  margin: 0;
}

main {
  min-height: 100%;
  padding-top: 2em;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}

div.inhoud {
  padding: 1em;
}

footer {
  color: #DDD;
  background: #666;
  background: linear-gradient(to right, #666, #222);
  align: center;
}

footer p {
  margin: 0;
}

li {
  width: auto;
  min-width: 30em;
  display: inline-block;
}

@font-face {
  font-family: Broodtekst;
  src: url(nunito-light.ttf);
}
@font-face {
  font-family: Koppen;
  src: url(roboto-condnsd-rglr.ttf);
}
@font-face {
  font-family: Voeter;
  src: url(roboto-extralightitalic.ttf);
}

h1,h2,h3,h4,h5,h6 {
  font-family: Koppen;
  line-height: 1;
}

nav {
  font-family: Koppen;
}

footer {
  font-family: Voeter;
  font-style: italic;
  text-align: center;
}