*{
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background-color: white;
}
h2{
  font-family: times;
  font-weight: normal;
  height: 100%;
  text-indent: 1em;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  /* color: #FF804F; */
}
p{
  font-family: times;
  height: 100%;
  padding: 0 10px;
  text-align: justify;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
/* Navigatiebalk */
nav{
  background-color: white;
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav li{
  height: 5em;
}
/* In a wordt het navigatie font geregeld */
nav a{
  font-family: times;
  font-size: 15px;
  height: 100%;
  padding: 1em;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

/* nav a:hover{
  color: #f0f0f0;
  cursor: pointer;
} */
/* nav li:first-child{
  margin-right: auto;
} */
a:hover{
  opacity:0.7
}
footer{
  height: 5em;
}


/* hou de mediaqueries BENEDEN DE REST zo kan als het goed is
de rest van het responieve design daar ook in passen, kaders voor
tablet en mobiel zijn reeds gesteld */
/* tablet */
@media(max-width: 650px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
/* mobiel */
@media(max-width: 500px){
  .sidebar{
    width: 100%;
  }
}
}
