
body {
    margin: 0;
    padding: 0;
    padding-top: 0px;
    background-color: black;
}




.header {
    padding: 10px 16px;
    background: #5d594f;
    color: #f1f1f1;
    top: 0;
    z-index: 1;
    position: fixed;
    width: 100%;
}

.header_image_right {
    position: absolute;
    height: 70px;
    width: auto;
    bottom: 18px;
    right: -10px;
    z-index: 2;
}

.header_image_left {
    position: absolute;
    height: 70px;
    width: auto;
    bottom: 18px;
    left: -10px;
    z-index: 2;
}
.header_image_left_menu {
    position: absolute;
    height: 54px;
    width:auto;
    top:-25px;
    left: -10px;
    z-index: auto;
}
.header_image_right_menu {
    position: absolute;
    height: 40px;
    width: auto;
    bottom: 18px;
    right: -10px;
    top:-18px;
    z-index: 77;
}

code {
    background-color: rgb(165, 101, 101);
    border: 1px solid #999;
    display: block;
    padding: 15px;
    font-family: monospace;
    font-size: 8pt;
    word-wrap: break-word;
  }

.formated_tekst {
    color: white;
    text-emphasis-color: white;
    font-family: verdana;
    text-align: center;
    font-size:x-large;
    margin-top: 10%;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color:rgba(62, 60, 78, 0.432);
    color: white;
    text-align: center;
    z-index: 1;
 }
 
a {
    display: inline-block;
    padding: 8px 12px;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: bold;
    font-family: "Segoe UI", Arial, sans-serif;
    box-shadow: 0 4px 0 #000;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.1s;
    letter-spacing: 1px;
    background-color: #46707f; /* standaard rood, kan per link overschreven worden */
    margin: 2px; /* kleine ruimte tussen buttons */
  }

  /* Hover & active effect */
  a:hover {
    background-color: #009eda;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #990000;
  }

  a:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #990000;
  }
