 

/* Dit zorgt ervoor dat met breedte ("width") altijd inclusief padding en border is (dus niet allen de breedte van de tekstinhoud) */
* {
  box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 100%;
    margin: 0.5vw;
}

.img1 {   /* kaart Nederland */
    float: left;
    width: 32%;
}

.img2 {  /*treinststion*/
    float: right;
    width: 20%;
    padding-top: 3vw;
}

.clearfix {
  position:relative;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
  position: relative;
}

.header {
    line-height: 19vw;
    height: 19vw;
    top: 0;
    right: 0vw;
    width: 99vw;
    position: absolute;
    background-color: rgba(201, 255, 170, 0.234);
}

.subtitel {
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(255, 127, 80, 1);
    color: rgba(0, 0, 255, 1);
    margin-top: 7vw;
    margin-bottom: 7vw;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
h2 {
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
h3 {
    font-size: 11px;
    padding-bottom: 0vw;
    margin-bottom: 0vw;
    margin-top: 1vw;
}

p.left{
    text-align: left;
    font-weight: normal;
    text-indent: 7%;
    font-style: italic;
    padding: 0vw 0vw 2vw;
    margin: 0%;
}
span {
    font-size: 10px;
    color:rgb(200, 0, 0);
}
canvas{
    border-style: solid;
    background-color: rgba(201, 255, 170, 0.234);
    border-radius: 2vw;
}
h4 {
    margin: 0px;
    padding: 4vw 2vw 1vw 5vw;
    font-size: 13px;
    background-color: rgba(201, 255, 170, 0.234);
    font-family: Georgia, 'Times New Roman', Times, serif;
}
p,li,a {
    font-size: 10px;
}

ul {margin-top: 0%; 
    padding-top: 0%;
}

/* begin dropdown*/
.dropbtn {
  background-color: rgba(201, 255, 170, 0.5);
  padding: 0;
  border: none;
  cursor: pointer;
  font-size: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: rgb(248, 248, 248);
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 1vw;
  padding: 0.4vw;
}

.dropbtn:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  background-color: #00ff00;
}
/* einde dropdown*/

/* begin menubalk */
ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background-color: #f3f3f3;
}

ul.menu li {
  float: left;
}

ul.menu a {
  display: block;
  color: #666;
  text-align: center;
  padding: 1vw 1vw;
  text-decoration: none;
}

ul.menu a:hover:not(.active) {
  background-color: #ddd;
}

ul.menu a.active {
  background-color: rgb(201, 255, 170);
  text-shadow: 0.5px 0.5px 0.5px
}
/* einde menubalk */

/* begin responsive */
.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: right;
  padding: 15px;
}

  /* voor mobiele telefoon rechtop: */
[class*="col-"] {
  width: 100%;
}
[class*="grafiek-"] {
  width: 100%;
  height: 100vw;
}

  /* Voor mobiele telefoon landscape: */
@media only screen and (max-width: 900px) and (orientation: landscape) {
  ul.menu a {padding: 0px 10px;} /* menubalk dunner maken */
  .img1, .img2 {display: none;} /*titelbalk dunner maken*/
  .header {height: 12vh; line-height: 1; position: static;} /*titel dunner maken*/
  .subtitel {margin: 0; padding: 0;} /*titel dunner maken*/
  .col-2 {width: 50%;}
  .grafiek-2 {width: 50%; height: 80vh;}
  .row {border-style: solid; border-radius: 2vw;}
}

@media only screen and (min-width: 900px) {
  ul.menu a {padding: 5px 15px;} /* menubalk dunner maken */
  .img1 {width: 16%;} /*titelbalk een beetje dunner maken*/
  .img2 {width: 10%; padding-top: 3vh;} /*titelbalk een beetje dunner maken*/
  .header {height: 12vh; line-height: 1; position: static;} /*titel dunner maken*/
  .subtitel {margin-top: 3vh;} /*titel dunner maken*/
  .header {height: 18vh;}
  .col-2 {width: 50%;}
  .grafiek-2 {width: 50%; height: 80vh;}
  .row {border-style: solid; border-radius: 2vw;}
}
/* einde responsive */