.btn {
  text-decoration: none;
  height:40px;
  padding-top:10px;
}

.navigation-header {
  padding: 0px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container > a {
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
}

.navigation-items {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.navigation-items > a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: .4s ease-in-out;
}

.navigation-items > a:hover {
  background:  #FFC300 ;
}

.hamburger {
  display: none;
  font-size: 20px;
  font-weight: 800;
  color: black;
}

@media screen and (max-width:768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }
  .hamburger #closeHam {
    display: none;
  }
  .navigation-items {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: 40px;
    background-color: yellow;
    width: auto;
    padding: 10px 30px 10px 15px;
  }
}

.container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto minmax(10em, 40em) auto;
  grid-template-rows: 40px minmax(100vh, auto) 40px;
  grid-template-areas:
  "nav           nav       nav"
  "left_sidebar  content   right_sidebar"
  "footer        footer    footer"
}

.kennis-container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto minmax(10em, 60em) auto;
  grid-template-rows: 40px minmax(100vh, auto) 40px;
  grid-template-areas:
  "nav           nav       nav"
  "left_sidebar  content   right_sidebar"
  "footer        footer    footer"
}

*, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

<<<<<<< HEAD
=======
p {
    padding-bottom:20px;
}

h4 {
    padding-top:20px;
}

ul {
    padding-left:20px;
}

>>>>>>> RDFLib
.footer {
  grid-area: footer;
}

/* .right_sidebar { */
/*   grid-area: right_sidebar; */
/*   background-color:black; */
/*   background-image: url("/static/images/common/kanarie2.74cd7f54a069.png") ; */
/*   background-size: 5em; */
/*   background-repeat: repeat-y; */
/*   background-blend-mode: lighten; */
/*   background-color: rgba(255, 255, 255, 0.6); */
/*   background-position: top 10px; */
/* } */

/* .left_sidebar { */
/*   grid-area: left_sidebar; */
/*   background-image: url("/static/images/common/kanarie1.eb34d086b9cf.png") ; */
/*   background-size: 5em; */
/*   background-repeat: no-repeat; */
/*   background-blend-mode: lighten; */
/*   background-repeat: repeat-y; */
/*   background-color: rgba(255, 255, 255, 0.6); */
/*   transform: scaleX(-1); */
/*   background-position: top 10px; */
/* } */

.content {
  grid-area: content;
}

.content.kennis-content {
  grid-area: content;
}

.navbar {
  grid-area: nav;
  background: yellow;
}

.pdf-btn {
    padding: 8px 14px;
    background: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}
.pdf-btn:hover {
    background: #0056b3;
}
