#datenschutz-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 1000;
    overflow-y: scroll;
  }
  /* Container für den Inhalt */
  #datenschutz-content {
    position: relative;
    max-width: 600px;
    margin: 10% auto;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Schließen-Button */
  #close-btn-impressum {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
  }

  #close-btn-datenschutz {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
  }


  #impressum-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 1000;
  }
  /* Container für den Inhalt */
  #impressum-content {
    position: relative;
    max-width: 600px;
    margin: 10% auto;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }