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;
  font-style: italic;
  font-weight: 700;
  color: black;
}

p {
  margin: 0px;/* nodig voor positionering boven*/
  overflow:hidden;
  color: darkblue;
  /*font-size: 19px;*/
}

#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 {
  width:70%;
  max-width: 1000px;
  margin: 20px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  /*background-color: lightblue;*/
  border: 2px solid grey;
  border-radius: 15px;
  box-shadow: 10px 10px 10px 5px grey;
}

#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;
}

h1 {
  margin-top: 1px;
  text-align: top;
  color: darkblue;
}

h2 {
  margin: 0px;
  display: block;
  margin: left;
}

img {
  border-radius:15px;
  display: block;
  margin: left;
  overflow:hidden;
}


.box-1 {
  border-radius: 10px;
  min-height: 20px;
  /*background-color: white;
  border: 0px;*/
}

.img_float {
  float: right;
  margin-left: 30px;
}



/* 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 */




