body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: gray;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
  
  .wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(#A52A2A, #A52A2A, #FFA500, #FFA500);
    background-size: 100% 50%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .left-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom, #A52A2A, #FFA500);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  
  .right-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom left, #111111 50%, #333333 50%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }

  #typewriter-header {
    position: absolute;
    top: 0;
    left: 70px;   /*wird überschrieben bei Mobile */
    width: calc(100% - 75px);   /*wird überschrieben bei Mobile */
    padding-left: 5px;
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: monospace;
	  font-size: clamp(0.8rem, 2.8vh, 1.5rem);
    color: white;
    border-color: white;
    border-width: 1px;
    text-align: center;
  }

  .menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
	  font-size: clamp(0.6rem, 1.8vh, 1.1rem);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    z-index: 9999;
  }
  
  .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    display: inline;
  }
  
  .menu li.separator {
    margin-left: 10px;
    margin-right: 10px;
    border-right: 1px solid white;
  }
  
  .menu a {
    text-decoration: none;
    color: white;
    padding: 5px;
  }
  
  .menu a:hover {
    color: orange;
  }

  /* Menü-Icon-Stile */
.menu-icon {
  position: fixed;
  top: 5px;
  left: 10px;
  cursor: pointer;
  z-index: 9998;
}

.barwhite {
  width: 50px;
  height:9px;
  border-radius: 2px;
  background-color: white;
}

.barwhitemenu {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 0.7rem;
  width: 50px;
  height: 15px;
  border-radius: 0;
  background-color: white;
  text-align: center;
}

.bargray {
  width: 50px;
  height: 5px;
  border-radius: 2px;
  background-color: rgba(128, 128, 128, 0.5);
}

.menu-container {
  position: fixed;
  top: 10vh;
  left: -300px; /* Menü ist standardmäßig ausgeblendet */
  width: 300px;
  background-color: lightyellow;
  border-radius: 10px;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
}

.menu-content {
  padding: 20px;
}

.menu-content ul {
  list-style-type: none;
  padding: 0;
}

.menu-content li {
  margin-bottom: 10px;
}

.menu-content a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

li.li_erste{
  margin-left: 10px;
}

li.li_zweite{
  margin-left: 20px;
}

li.li_head{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(0.6rem, 2vh, 3rem);
  color:black;
}

.menu-container a {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(0.8rem, 1.6vh, 2rem);
  text-decoration: none;
  color: black;
  padding: 5px;
}

.menu-container a:hover {
  color: orange;
}

  /*die Tabelle*/
  table {
    width: 80%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    max-width: 800px;
    border-collapse: collapse;
    background-color: #eeca87;
    margin: 100px 0;
    z-index: 9998;
}
th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}
@media (max-width: 600px) {
    table, th, td {
        font-size: 12px;
    }
}

th{
  background-color: darkgoldenrod;
}

