:root {
    --header_height: 95px;
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

html,body {
    font-family: 'Roboto', sans-serif;
    border: 0;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.login {
    padding-left: 20px;
    padding: 1px 16px;
}

main {
    flex: 1; /* füllt den verfügbaren Platz */
    margin-top: var(--header_height);
    padding: 20px;
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}
.menu_right {
    text-align: right;
}

header {
    background-color: rgb(251, 242, 181);
    color: rgb(203, 138, 48);
    padding: 0px;
    margin: 0px;
    border: 0px;
    position: fixed !important;
    height: var(--header_height);
    width: 100%;
}

footer {
    background-color: black;
    color: white;
    font-size: 18px;
    padding: 20px;
    margin: 0px;
    border: 0px
}

footer a:visited {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
footer a:hover {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
footer a:link {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hamburger-menu {
    text-align: left;
}

.menu {
    position: absolute;
    background-color: #ccc;
    border: 1px solid #ccc;
    width: 140px;
    padding: 9px;
    text-align: left;
}

.menu a {
    display: block;
    padding: 9px;
    text-decoration: none;
    color: black;
}

.menu a:hover {
    background-color: #f0f0f0;
    color: black;
}

.content {
    text-align: left;
}

.dropdown-content {
    display: none;
    position: left;
    background-color: #f1f1f1;
    min-width: 20px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    font-size: 16px;
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    font-size: 16px;
    text-decoration: none;
    display: block;
}
.dropdown {
    position: relative;
    display: inline-block;
    font-size: 16px;
}
.dropdown a:hover {
    background-color: #ddd;
    font-size: 16px;
}
.show {
    display:block;
}

.dropbtn {
    background-color: rgb(251, 242, 181);
    color: black;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
    background-color: rgb(203, 138, 48);
}
