:root {
  --main-white: #ffffff;
  --main-dark: #10375C;
  --main-text: #363636;
  --main-light: #F4F6FF;
  --main-med: #d8d8d8;
  --main-yellow: #F3C623;
  --main-orange: #EB8317;
  --main-lt-gy-trans: rgba(72, 72, 72, 0.4);
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--main-yellow);
}

#app {
  flex-grow: 1; /* Der Inhalt wächst, um den verfügbaren Platz zu füllen */
}

.header-container {
  background-color: #;
  border-bottom: 0.1em dashed var(--main-yellow); /* Stil 'solid' hinzugefügt */
  margin: 3em 0 0 0;
  padding: 0 0 0 0;
}

.footer-container {
  background-color: #;
  color: var(--main-dark-gy); /* Textfarbe im Footer */
  text-align:left; /* Text zentrieren */
  padding: 0.5em 0 0 0; /* Padding für den Footer */
  border-top: 0em dashed var(--main-yellow); /* Stil 'solid' hinzugefügt */
  margin-top: auto; /* Footer am Ende halten */
  margin-bottom: 2em;
}

.text-footer {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-variation-settings: "wdth" 100;
  font-style: normal;
  font-size: 0.75em;
  color: var(--main-text);
}

.text-header {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2em;
  color: var(--main-white);

}

.text-header_2 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 2em;
  color: var(--main-white);
  
}

.text-all {
  font-family: "Noto Serif", serif;
  font-size: 1em;
  font-optical-sizing: auto;
  font-weight: 400;
  font-variation-settings: "wdth" 150;
  font-style: normal;
  color: var(--main-light);
  text-align: left;
}