@charset "utf-8";
/* CSS Document */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	background-color: #CBCBCB;
}
.menu {
    background-color: #333;
    overflow: hidden;
}
.menu a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.menu a:hover {
    background-color: #ddd;
    color: black;
}
.container {
  	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.box {
  	height: auto; /* Änderung auf auto für dynamische Höhe */
  	background-color: #797979;
  	margin: 10px;
  	display: flex;
 	flex-direction: column; /* Neue Richtung: von oben nach unten */
  	justify-content: center;
	width:auto; /* Berechnung der Breite für drei Spalten */
}
figcaption {
  text-align: center; /* Zentrierung der Bildunterschrift */
	margin-top: 10px; /* Abstand nach oben hinzufügen */
}
h1 {
  	color: black; /* Ändere die Textfarbe auf Blau */
  	font-size: 40px; /* Ändere die Schriftgröße auf 24 Pixel */
  	font-family: Arial, sans-serif; /* Ändere die Schriftart auf Arial oder eine Standardschriftart */
  	font-weight: bold; /* Ändere die Schrift auf fett */
  	margin-bottom: 10px; /* Füge einen Abstand nach unten hinzu */
	text-align: center;
}

h2 {
  	color: black; /* Ändere die Textfarbe auf Blau */
  	font-size: 30px; /* Ändere die Schriftgröße auf 24 Pixel */
  	font-family: Arial, sans-serif; /* Ändere die Schriftart auf Arial oder eine Standardschriftart */
  	font-weight: bold; /* Ändere die Schrift auf fett */
  	margin-bottom: 10px; /* Füge einen Abstand nach unten hinzu */
	text-align: center;
}

 .image-box {
    display: flex;
    justify-content: center; /* Horizontale Ausrichtung zentrieren */
    align-items: center; /* Vertikale Ausrichtung zentrieren */
    max-width: 100%; /* Die Box passt sich der Breite des übergeordneten Elements an */
    height: auto; /* Die Höhe passt sich proportional zur Breite an */
  }

  .image-box img {
    max-width: 100%; /* Das Bild passt sich der Breite der Box an */
    height: auto; /* Die Höhe passt sich proportional zur Breite an */
  }
form {
  margin-bottom: 20px;
}

label {
  margin-right: 10px;
}

input {
  margin-right: 10px;
  padding: 5px;
}

button {
  padding: 5px 10px;
}

#data-container {
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

#data-container ul {
  list-style-type: none;
  padding: 0;
}

#data-container li {
  background-color: #f4f4f4;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}

