body { 
	font-family: palatino, serif;
	font-size: 100%;
	hyphens: auto; 
	background-color: #FFEBCD;
	background-image: url("hintergr.jpg");
	padding: 0 10px; /* 10px Abstand zu Seitenrändern auf Mobil */
}

p {
	text-align: justify;	/* Blocksatz */
}

/* Bild, das 100% der Breite des Bildschirms einnimmt, aber nicht mehr als seine eigentliche Größe */
.responsive-img {
    display: block;
    max-width: 100%;   /* nie breiter als Container */
    width: auto;
    height: auto;
    margin: 0 auto;
}

.centered {
	text-align: center;
}

.block {
  width: 50%;           /* ca. die Hälfte der Containerbreite */
  min-width: 300px;     /* minimale Breite */
	margin: 0 auto;      /* horizontal zentrieren */
}

.nav-list {
    list-style: none; /* keine Standard-Bullets */
    padding: 0;
    margin: 0;
}

.nav-list li {
    position: relative;
    padding-left: 20px; /* Platz für Icon */
    margin-bottom: 8px;
}

.nav-list li img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* vertikal zentrieren */
    width: 10px;
    height: 10px;
}
