/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Die Höhe auf den gesamten Bildschirm setzen */
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    flex: 1; /* Damit der Inhalt den verfügbaren Platz einnimmt */
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Dadurch wird der Footer immer nach unten geschoben */
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}


img {
  max-width: 400px;
  height: auto;
  border: 3px solid #333;
  border-radius: 10px;
}

/* Zentriert die Impressum-Div horizontal und vertikal */
.impressum {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikale Zentrierung */
    align-items: center;    /* Horizontale Zentrierung */
    text-align: center;     /* Text innerhalb der Div zentrieren */
    height: 100vh;          /* Die Div nimmt die volle Höhe des Viewports ein */
    margin: 0;              /* Entfernt Standardabstände */
}

.disclaimer-block {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}