 body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: black;
}

p {
  margin: 0px;/* nodig voor positionering boven*/
  color: darkblue;
  font-size: 1.0rem;
  text-align: left;
}

#header {
  margin-top: 0px;
}

.header {
  margin-top: 0px;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 6px #000000;
  text-align: center;
}

#content {
  position: relative; /* Voor positionering parent*/
  width:70%;
  max-width: 1000px;
  margin: 20px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid grey;
  border-radius: 15px;
  box-shadow: 10px 10px 10px 5px grey;
  background-color: white;
}

#footer {
  width:70%;
  max-width: 1000px;
  height: 20px;
  margin: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
}

.fixed {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  background-color: white;
  border: 2px solid grey;
  border-radius: 15px;
  box-shadow: 10px 10px 10px 2px grey;
}

.fixed:hover {
  background-color:rgb(58, 134, 180);
  color: white;
}

.img_float {  /* Image center */
  display:block;
  margin-left: auto;
  margin-right: auto;
}

.linkkleur1 { /* Zwarte links */
  color : black; 
  text-decoration : none;
}

.onder {
  margin-left: auto; /*centreren*/
  margin-right: auto; /*centreren*/
  margin-top: 10px; /*Onder keuze menu*/
  width: 1000px;
}
.jaar {
  position: absolute; /* Voor positionering child*/
  top: 5px; 
  margin-left: 50%; 
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.txt {
  font-size: 1.0rem;
  font-weight: 400;
}


.logo {
  float: right;
  margin-left: 15px;
  width: 200px;
  height: 200px;  
}


.clearfix::after { /* float clearfix */
  content: "";
  clear: both;
  display: table;
}

.black { /* Zwarte links */
 color : black; text-decoration : none;
}


#BOX_T_N_W { /* 310px */
  position: relative; /* Voor positionering parent*/
  width: 308px;
  height: 200px;
  margin: 5px;
  padding: 3px;
  background-color: white;
  box-shadow: 10px 10px 10px 1px grey;
  border: 2px solid grey;
  border-radius: 20px;
}

#tt1 { /* Top texten over alle boxen */
  font-size: 1.0rem;
  font-weight: 400;
  position: absolute; /* Voor positionering child*/
  top: 5px; 
  right: 20px; 
}


#TOP { /* Top texten over alle boxen */
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

/* dropdown start ----------------------- */
ul {
  list-style-type: none;
  margin-top: 0px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0;
  overflow: hidden;
  background-color: black;
  font-size: 1.0rem;
  font-style: italic;
}
li {
  float: right;
}
li a, .dropbtn {
  display: inline-block;
  color: white; /*text*/
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: bold;
}
li a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(58, 134, 180);
}
li.dropdown {
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {background-color: #f1f1f1;}
.dropdown:hover .dropdown-content {
  display: block;
}
/* dropdown end */




