    table {
      margin-left: auto;
      margin-top: auto;
      margin-bottom: auto;
      margin-right: auto;
      width: 50%; /* Wichtig: Eine Breite muss definiert sein, damit 'auto' funktioniert */
  border-collapse: separate;
  border-spacing: 60px;
    }

  .zentrierungs-container {
      display: flex;
      justify-content: center; /* Horizontale Zentrierung */
      align-items: center;    /* Vertikale Zentrierung */
      /* Optional: Geben Sie dem Container eine definierte Höhe, damit die vertikale Zentrierung funktioniert */
      height: 600px; 
    }
    
    /* Wichtig: Dies stellt sicher, dass die Tabelle selbst als Blockelement behandelt wird */
    .zentrierungs-container table {
      display: block; 
    }

body { font: 1.2em/140% verdana,arial,'Times New Roman',serif; } 

body   { 
	background-color: BlanchedAlmond; 
	color: DarkSlateGray;
}

p    { 
	background-color: BlanchedAlmond;
	color: DarkSlateGray;
}