body {
  margin: 0;
  font-family: Times New Roman;
}

h1{
	color:#000000;
} 

h2{
	color:#000000;
} 

h5{
	color:#000000;
} 

p {
	color:#364D39;
} 

img{ 
	border:1px solid #cccccc; 
	border-radius:8px;
} 

ul{
	color: #000000;
	
}

header {
  background: #638563;
  color: white;
  padding: 20px;
  text-align: center;
}

.haupt-navigation ul {
  list-style-type: none;   /* Keine Aufzählungszeichen */
  margin: 0;
  padding: 0;
  background: #ADCFA3;
  text-align: center;
}

.haupt-navigation li {
  display: inline;         /* Listeneinträge nebeneinander */
}

.haupt-navigation a {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
}

.haupt-navigation a:hover {
  background: #30612E;     /* Hintergrundfarbe beim Überfahren */
}

main {
  background: #f9f9f9;
  min-height: 300px;
  padding: 20px;
}

.flex-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.item {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  min-height: 160px;
  padding: 10px;
}

.left-image {
  flex-direction: row;
}

.right-image {
  flex-direction: row-reverse;
}

.item img {
  width: 30%;
  min-width: 90px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.content {
  width: 70%;
  padding: 0 16px;
}

