/*------------------------------------------------------------------------------
                                    Seite
------------------------------------------------------------------------------*/
body {
  background-color: gainsboro; /* Hintergrundfarbe */
  color: black; /* Schriftfarbe */
	margin: 0;
/* 	font: 1.25em Calibri, sans-serif; */
	display: flex;
	min-height: 100vh;
	margin: 0 auto;
	flex-direction: column;
}

body > * {
  padding: 0.5em;
  padding-left: calc((100% - 95em) / 2);
  padding-right: calc((100% - 95em) / 2);
}

header, footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
/* background: hsl(0, 0%, 95%); */
}

.zentriert  {
  text-align: center; /* Text zentrieren */
}
/*------------------------------------------------------------------------------
                               Navigation (Menü)
------------------------------------------------------------------------------*/
nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	position: relative;
}

nav li {
	margin: 0.5em;
	padding: 0;
	font-size: 1.5rem;
	flex: 1 1 0%;
}

@media (min-width: 45em) {
	nav > ul {
		flex-direction: row;
		height: 3em;
	}
	nav li {
		flex: 1;
		font-size: 1em;
	}
}

nav a {
	display: block;
	padding: 0.4em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	border: thin solid darkblue;
	border-radius: 10px;
	box-shadow: 0 5px 10px white inset;
	color: Gold;
	background-color: darkblue;
	transition: all .25s ease-in;
}

nav li[aria-current] a {
	background-color: firebrick;
	color: gold;
}

nav a:focus,
nav a:hover,
nav li[aria-current] a:focus,
nav li[aria-current] a:hover {
	color: darkblue;
	background-color: gold;
}
/*------------------------------------------------------------------------------
                        Tabelle für die Bahnstrecken
------------------------------------------------------------------------------*/
table, th, td {
  border: thin solid black;
}

table {
  border-collapse: collapse;
  font-size: 0.8em;
}

th, td {
  padding: 10px;
}

th { 
  background-color: dimgray; 
	color: white;
}

tbody tr:nth-child(even) { 
  background-color: lightslategray; 
	color: yellow;
}
/*----------------------------------------------------------------------------*/
