/* Grundlayout */
html,body {
a,
a:visited,
a:hover,
a:active,
a:focus {
    color: #333;
    text-decoration: underline; /* optional */
}

height: 100%;
margin: 0;   
padding: 0; 
background-color: #875C70;
    font-family: Helvetica, Arial, sans-serif;
    color: #333;
    text-align: left;
    padding: 20px;
    font-size: 14px;
}

/*Menü*/
nav {
font-size: 16px;
margin-right: 20px;
font-weight: normal;
color: #FFFFFF;
text-align: right;
}

ul {
  list-style-position: outside; /* Standard */
}

li {
  padding-left: 20px;       /* Platz für den Einzug schaffen */
  text-indent: -25px;      /* Zweite Zeile nach links ziehen */
  margin-bottom: 5px;       /* Optional: Abstand zwischen Listenpunkten */
}

/* Überschrift 1 */
h1 {
    font-size: 24px;
    font-weight: normal;
    color: #FFFFFF;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid #FFFFFF;

}

/* Überschrift 2 */
h2 {
    font-size: 18px;
    font-weight: bold;

    margin: 20px;
}

/* Body-Text */
p {
    font-size: 16px;
    font-weight: normal;
    margin: 20px;
}

/*Überschrift 2 für Container*/
h2c {
font-size: 16px;
font-weight: bold;

}

/*body-Text für Container*/

pc {
font-size: 16px;
font-weight: normal;

}



/* styles.css */

.container {
    display: flex; /* Aktiviert die Flexbox */
    justify-content: space-between; /* Verteilt den Platz zwischen den Items */
    gap: 20px; /* Fügt einen Abstand zwischen den Items hinzu */
    padding: 20px;
    background-color: #875C70;
}

@media (max-width: 768px) {
.container {
flex-direction: column;
}
}

.image-wrapper {
width: 98%;
display: inline-block;
margin: 5px;
}

.image-wrapper img {
width: auto;
max-width: 100%;
max-hight: 300px;
}

.image-wrapper-breit{
  display: grid;
  /* Erstellt zwei gleich grosse Spalten */
  grid-template-columns: repeat(2, 1fr); 
  Margin: 5 px;
  gap: 40px;
  width: 98%;

}

.image-wrapper-breit img {
  width: 100%; /* Das Bild füllt nun einfach seine Grid-Zelle aus */
  height: auto;
}


.item {
    flex: 1 1 250px; /* Lässt jedes Item den verfügbaren Platz gleichmäßig einnehmen */
    padding: 5px;
    background-color: #9e8a93;
    box-sizing: border-box; /* Verhindert, dass Padding die Breite beeinflusst */
}*/
