body {
  margin: 0;
  background-image: url("achtergrond.jpg");
  background-size: cover;         /* vult hele scherm */
  background-repeat: no-repeat;   /* geen herhaling */
  background-position: center;    /* mooi gecentreerd */
  background-attachment: fixed;  
  text-align: center;

}

/* =============== */
/* NAVIGATION BAR */
/* =============== */

.topnav {
  background-color: black;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}

/* Titel */
.topnav h1 {
  float: left;
  color: white;
  padding: 8px 15px;
  font-size: 18px;
  text-decoration: none;
}
a,img,button,div{
  user-select: none;
   -webkit-user-drag: none; /* Chrome, Safari */
  -khtml-user-drag: none;  /* oudere Konqueror */
  -moz-user-drag: none;    /* Firefox (werkt niet overal) */
  -o-user-drag: none;      /* Opera (ouder) */   
}
/* Normale menu links (desktop) */
.normal-menu a {
  float: left;
  color: white;
  padding: 17px 17px;
  text-decoration: none;
  font-size: 24px;
}

.topnav a:hover {
 background-color: rgb(23, 205, 195);
}

.topnav a.active {
  background-color: aqua;
  color: white;
}

.Wisselknop {
  float: right;
  color: white;
  padding: 14px 14px;
  text-decoration: none;
  font-size: 25px;
  
}
.Wisselknop:hover {
    background-color: transparent !important; /* of wat je wilt */
     /* behoud originele kleur */
    cursor: pointer; /* blijft klikbaar */
}
/* Hamburger menu */
#hamburgermenu {
  display: none;
  background-color: black;
  width: 100%;
  height: auto;
  text-align: start;
  margin-top: 62px;
  z-index: 2;
}

#hamburgermenu a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  width: 100%;
  display: block;
  z-index: 3;
}
#hamburgermenu .Wisselknop{
  padding: 0px;
}
/* Hamburger knop */
.hamburgermenu-button {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100%;
  max-height: 62px;
  color: white;
  background-color: black;
  font-size: 30px;
  cursor: pointer;
  z-index: 999;
}
#hamburgermenu a:hover{
 background-color: rgb(23, 205, 195);

}

.hamburgermenu-button:hover {
 background-color: rgb(23, 205, 195);
}

/* Actief hamburgermenu */
#hamburgermenu.active {
  display: block;
}

/* ======================== */
/* KAARTEN EN CONTAINER     */
/* ======================== */

.card {
  height: 500px;
  width: 300px;
  box-shadow: 5px 5px 5px black;
  background-color: white;
  text-align: center;
  float: left;
}


.button1 {
  background-color: blue;
  border: 1px solid black;
  color: white;
  width: 40%;
  height: 50px;
}

.card:hover {
  height: 520px;
  width: 320px;
}

.button1:hover {
  width: 42%;
  height: 53px;
}

#container {
  position: absolute;
  top: 475px;
  width: 100%;
  height: auto;
  background-color: rgb(42, 173, 167);
  border-radius: 50px;
  box-shadow: 5px 5px black;
  text-align: center;
  float: left;
}

#voorstukje {
  position: relative;
  width: 100%;
  min-height: 75px;
  margin-top: 60px; /* in plaats van top: 5% */
  background-color: rgb(42, 173, 167);
border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
}

#tekstblok {
  justify-self: center;
  height: auto;
  width: 50%;
}

h1{
  color: white;
}
/* ============ */
/* RESPONSIVE */
/* ============ */

/* Medium scherm */

/* Mobiel (kleine schermen) */
@media only screen and (max-width: 720px) {
  /* Verberg normaal menu */
 .normal-menu {
    display: none;
  }
 .Wisselknop{
    display: none;
  }
  /* Toon hamburger knop */
  .hamburgermenu-button {
    display: flex;
  }
  


}

/* Verberg hamburger menu boven 600px */
@media (min-width: 721px) {
  #hamburgermenu {
    display: none !important;
  }
}
