body {
  background-color:#d9ddd2;
  font-size:2em;
  font-family: Western, Book Antiqua, serif;
  padding: 1rem 2vw 1rem 2vw;
  margin: 0;
}
a {
  color: #2b2500;
}
.parent a {
  text-decoration: none;
}
hr {
  border: none;
  margin: 0em 0em;
  height: 0px;
  border-top: 4px solid grey;
  background-color: transparent;
}

.bottom_hr {
  margin: 2rem 0 0 0;
}

p{
  margin: 0;
  padding: 1rem 2vw;
  text-align: justify;
}

/*****************************/

/* Menu entry*/
.menu_entry {
  color: #2b2500;
  padding: 0em 2vw;
  white-space: nowrap; /* always one line!*/
}

/* Normal menu entry*/
.menu_link {
  color: #2b2500;
  text-decoration: none;
}

/* Current (inactive) menu entry*/
.menu_curr {
  pointer-events: none;
  cursor: default;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
}

.menu_content {
  display: flex;                  /* needed for justify-content */
  justify-content: space-between; /* distribute elements */
}
/* Narrow version */
.menu_narr {
  justify-content: start; /* distribute elements */
}
.menu_button {
  display: none;
}

/*****************************/

/* Title */
.menu h2 {
  margin: 0;
  padding: 4rem 2vw 1rem 2vw;
  font-size: 1.5em;
}

.title_big h2 {
  font-size: 2em;
}

.title_img {
  max-height: 70vh;
  max-width: 92vw;
}

.preview_img {
  display: block;
  max-height: 50vh;
  max-width: 92vw;
}
.parent {
  display:inline-block;
  vertical-align:top;
  padding: 3rem 2vw 0rem;
}
.description {
  width:0;
  min-width:100%;
  color: #2b2500;
  text-decoration: none;
}

/* responsive, form small screens, use 13px font size */
@media (max-width: 80em) {
  body {
    font-size: 1.5em;
  }
}
@media (max-width: 60em) {
  /* Dropdown menu */
  .menu_entry {
    padding: 0.3em 0;
  }

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

  .menu_button {
    position: relative;
    display: inline-block;
    max-height: 1.2em;
    max-width: 1.2em;
    padding: 0;
  }

  .title_big h2 {
    font-size: 1.5em;
  }

  .menu h2 {
    display: inline-block;
    padding: 0 0.3em;
  }

  .menu_content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    padding: 1rem;
    z-index: 1;
  }
  .menu_content a:hover {background-color: #ddd;}
  .menu:hover .menu_content {display: grid;}
  .menu:hover .menu {background-color: lightgrey;}
}

@media (max-width: 40em) {
  body {
    font-size: 1em;
  }
}