body{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: 100;
    overflow: visible;
    font-size: large;
  }
  
  .top-bar {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: right;
  }
  
  .language-selector {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  .language-selector a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    .language-selector a {
      margin: 0 5px;
    }
    .language-selector {
        padding-left: 5%;
    }
  }
  
  .language-selector img.flag {
    width: 20px;
    height: 13px;
    margin-right: 5px;
    vertical-align: middle;
  }

  .language-selector img.logo {
    width: 140px;
    height: 80px;
    margin-right: 5px;
    vertical-align: middle;
  }

  @media screen and (max-width: 767px) {
    .language-selector img.logo {
      width: 80px;
      height: auto;
    }
  }
  
  header {
  background-image: url(zitrone-opacity.png);
  background-size: cover;
  background-position-y: center;
  background-position-x: center;
  padding: 8%;
  color: black;
  background-repeat: no-repeat;
  }
  @media screen and (max-width: 767px) {
    header{
      font-size: small;
    }
  }
  
  header h1{
  font-size: 500%;
  font-weight: 300;
  }
  
  header h2{
  font-weight: 400;
  }
  
  
  nav{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: large;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 1%;
  
  }
  
  .navpadding{
  padding-right: 1%;
  }
  
  table {
    width: 100%;
    justify-content: center;
  }
  
  .text-tabelle {
    font-weight: 300;
    font-size: 120%;
  }
  
  th img {
    display: block;
    width: 80%;
    margin-top: 20px;
    margin: auto;
  }
  
  
  a:link, a:visited
  {
  color: black;
  text-decoration: none;
  }
  
  .text1{
  width: 60%;
  float: left;
  text-align: left;
  max-width: 80%;
  font-weight: 300;
  font-size: 120%;
  }
  
  .bilder1{
  display: block;
  height: auto;
  margin: 1%;
  }
  
  .bilder1 img {
  width: 100%;
  height: auto;
  }
  
  @media screen and (max-width: 900px) {
  #containerb1 {
    flex-direction: column;
  }
  
  .text1 {
    width: 100%;
    float: none;
    margin: auto;
  }
  
  .bilder1 {
    width: 70%;
    margin: auto;
  }
  }
  
  
  #containerb1{
  display: flex;
  justify-content: center;
  width: 80%;
  }
  
  
  footer {
  text-align: center;
  padding: 5px;
  bottom: 0%;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  }
  footer a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 20px;
  }
  
  footer a:last-of-type {
  margin-right: 20px;
  }
  
  
  div, form {
  width: 90%;
  margin: 20px auto;
  }
  h2 {
  margin-bottom: 10px;
  margin: auto;
  padding: 5%;
  }
  p {
  margin: 5px 0;
  }
  
  /* Stile für große Bildschirme */
  @media screen and (min-width: 768px) {
  div, form {
    display: inline-block;
    vertical-align: top;
    width: 45%;
  }
  div {
    text-align: left;
  }
  form {
    text-align: center;
  }
  label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
  }
  input[type="text"],
  textarea {
    width: calc(100% - 20px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  textarea {
    height: 200px;
  }
  button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  button[type="submit"]:hover {
    background-color: #45a049;
  }
  }
  
  /* Stile für kleine Bildschirme */
  @media screen and (max-width: 767px) {
  div, form {
    width: 80%;
  }
  label,
  input[type="text"],
  textarea {
    width: 100%;
  }
  textarea {
    height: 100px;
  }
  }
  @media screen and (max-width: 767px) {
    button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px; /* Setzt das Padding des Buttons auf den gleichen Wert wie für größere Bildschirme */    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%; /* Setzt die Breite des Buttons auf 100% */
  }
  }