html {
  overflow-y: scroll;
}

body {
  margin: 0;
  background-image: radial-gradient(circle, #bfad99, #8B7765);
  font-family: Verdana, Helvetica, Arial, sans-serif;
}

/* LINKS */
a:link,
a:visited {
  color: #b9b9b9;
  text-decoration: none;
}

a:hover {
  color: #dddddd;
}

/* =========================
   HEADLINE
========================= */
h1 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 40px;
  text-align: center;
  font-family: serif, sans-serif;
}

/* =========================
   HEADER
========================= */
#ebene {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 312px;
  background-color: #877561;
  border-right: 2px solid #7a6854;
  border-bottom: 2px solid #7a6854;
  border-left: 2px solid #7a6854;

  display: flex;
  flex-direction: column;

  padding: 12px 0;
  gap: 12px;
  box-sizing: border-box;
}

/* TITLE BOX */
#feld {
  background-color: #7a6854;
  width: 294px;
  height: 60px;
  margin: 0 auto;

  box-shadow: 0px 2px 2px -2px black;
  border-radius: 7px;

  display: flex;
  align-items: center;      /* vertikal mittig */
  justify-content: center;  /* horizontal mittig */
}

/* NAV WRAPPER */
#feld2 {
  width: 100%;
}

/* NAV */
#navikat {
  width: 300px;
  color: #b9b9b9;
  font-size: 13px;
  font-family: Verdana, Helvetica, arial;
  font-weight: 500;
  line-height: 27px;

  margin: 0 auto;
  padding-left: 4px;
  display: flex;
}

/* BOXES */
#box1,
#box2,
#box3 {
  text-align: center;
  width: 91px;
  background-color: #216521;
  box-shadow: 1px 1px 2px #333;
}

#box1 { margin-left: 2px; }
#box2 { margin-left: 9px; }
#box3 { margin-left: 9px; }

#box1 a,
#box2 a,
#box3 a {
  display: block;
}

#box1 a:hover,
#box2 a:hover,
#box3 a:hover {
  background-color: #60824f;
}

#box4,
#box5,
#box6 {
  display: none;
}

/* =========================
   CONTENT
========================= */
#ebene2 {
  background-color: #7a6854;
  width: 312px;
  margin: 0 auto;
  padding-top: 126px; /* unter fixed header */
  color: black;
  font-family: Verdana, Helvetica, arial;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* =========================
   BLOCKS
========================= */
#block,
#block2,
#block3,
#block4,
#block4b,
#block5,
#block6,
#block7,
#block8,
#block9,
#block10,
#block11,
#block12,
#block13,
#block14 {
  background-color: #658754;
  width: calc(100% - 4px);
  margin: 0 2px 2px 2px;
  padding: 6px 3px;
  box-sizing: border-box;
  text-align: left;
  line-height: 17px;
}

/* nur Überschrift fett */
#ebene2 strong {
  font-weight: 700;
}

/* keine komplett fetten Blöcke */
#block7,
#block9,
#block11,
#block13 {
  font-weight: normal;
}

/* Hyphenation */
#block6,
#block8,
#block10,
#block12,
#block14 {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.datenschutz a {
  color: inherit !important;
  text-decoration: underline !important;
}