* {
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
  }

  html, body {
    margin: 0;
    height: 100%;

width: 100%;
background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
 align-items: center;  /* horizontaal centreren */
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
background-color: #f2f2f2;
}

  /* NAVBAR */
  .top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #77aacc;
  background: linear-gradient(to left, #77aacc, #fff); 
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
position: relative;
  min-height: 50px;
  padding:  0 1em;
width: 100%;
}
  .menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}


 .menu > li {
  margin: 0 1rem !important;
  overflow: hidden;
}

.menu a {
color: #fff;
text-decoration: none;
font-size: 18px;
margin: 15px;
}

  .menu-button-container {
   /* display: none; */
    /* height: 100%; */
display: none;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle {
    display: none;
  }

  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  }

  .menu-button::before {
    content: '';
    margin-top: -8px;
  }

  .menu-button::after {
    content: '';
    margin-top: 8px;
  }

  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
  }

  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255,255,255,0);
  }

  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
  }

 
:root {
      --accent: #0066cc;
      --bg: #f8f9fb;
      --text: #333;
      --radius: 10px;
      --shadow: 0 4px 10px rgba(0,0,0,0.1);
      --blok: #ccc;
    }


.container {
padding: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1.5rem;
      max-width: 900px;
      width: 100%;
box-sizing: border-box;
margin-top: 2rem;
    }

    /* Algemene stijl voor alle blokken */
    .blok {   
background:linear-gradient(135deg,#77aacc 0%, #fff 100%);

      padding: 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 3px 3px 8px rgba(119,170,204,0.6);
    }

    /* Specifieke blokken */
    .header-left h1 {
      margin: 0 0 0.5rem 0;
      font-size: 1.8rem;
      color: #333;
text-align: center;
    }

    .header-left h3 {
      margin: 0;
padding-top: 5px;
      color: #333;
      font-weight: 500;
background: #ccc;
padding: 4px 10px;
border-radius: 20px;
text-align: center;
border: 1px solid #333;

    }

    .header-right {
      align-items: center;
      justify-content: center;
    }

    .header-right img {
      max-width: 100%;
      height: auto;
      
    }

    .content-left p {
      margin: 0.4rem 0;
color: #333;
    }

    .content-left strong {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
      color: #333;
    }

  a {
      
      
      text-decoration: none;
      word-break: break-word;
    }


    a:hover {
      text-decoration: none;
    }

.regel {
    display: inline-flex;
    align-items: center;
padding: 6px;
}

.regel a {
text-decoration: underline;
}



  /* RESPONSIVE MOBIEL */
  @media (max-width: 768px) {


  .menu-button-container {
    display: flex;
  }


  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #77aacc;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }

.menu a {
    line-height: 2.5rem;   /* past precies binnen de li hoogte */
    padding: 0;            /* geen extra padding nodig */
    display: flex;
    align-items: center;   /* verticale centrering */
    justify-content: center;
    width: 100%;
}

.container {
        grid-template-columns: 1fr;
      }
      .blok {
        align-items: flex-start;
        text-align: left;
      }
.button {
margin: -80px;
}

.header-left {
    align-items: center;
  }

.header-right {
      align-items: center;
      justify-content: center;
    }
}
