body {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  min-height: 100vh;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
  font-family: Arial, Helvetica, Verdana, sans-serif;
  background-color: rgb(219,184,133);
  }

@keyframes open {
  from {
    left: -100vw;
  }
  to {
    left: 0;
  }
}

input#open-menu {
  display: none;
}

#branding {
  display: block;
}

#branding img {
  width: 100px;
}

input[type=checkbox]:checked ~ nav {
  display: block;
  position: absolute;
  top: 3.0rem;
  width: 15rem;
  text-align: center;
  animation-name: open;
  animation-duration: 0.3s;
}

.open-menu-label {
  font-size: 2.0rem;
  color: white;
  background-color: rgb(79,44,39);
  display: block;
  padding-left: 10px;
  grid-column: 1 / 13;
  position: absolute;
  top: 0.5rem;
}

.open-menu-label img {
  width: 40px;
}

header {
	background: #F1F3F4;
  background-color:  rgb(79,44,39);
  color: rgb(219,184,133);
  grid-column: 1 / 13;
  grid-row:    1 / auto;
  text-align: center;
  padding-top: 5px;
}

header address {
  font-size: 2.0rem;
  font-style: normal;
}

header address a {
  color: white;
  text-decoration: none;
}

header address a svg {
  color: rgb(183,181,64);
}

nav {
  background-color: rgb(79,44,39);
  padding-bottom: 0.3rem;
  grid-column: 1 / 13;
  position: relative;
}

nav ul {
	margin: 0;
  display: flex;
	flex-direction: column;
  padding-left: 0;
}

nav li {
  list-style: none;
  margin: 0.5rem;
  padding: 0;
	font-size: 1.5rem;
}

nav a {
  display: block;
  padding: .4rem;
  text-decoration: none;
  border: 1px solid rgb(219,184,133);
  border-radius: 3px;
/*  box-shadow: 0 5px 10px white inset;*/
  color: rgb(219,184,133);
  background-color: rgb(79,44,39);
  transition: all .25s ease-in;
}

nav li[aria-current] a {
  background-color: rgb(219,184,133);
/*  background-color: firebrick;*/
/*  color: gold;*/
  color: rgb(79,44,39);
  border: 1px solid white;
  border-radius: 3px;
}

nav a:focus,
nav a:hover,
nav li[aria-current] a:focus,
nav li[aria-current] a:hover {
  color: rgb(79,44,39);
  border: 1px solid white;
  border-radius: 3px;
  background-color: rgb(219,184,133);
}

article, section {
  background-color: white;
	background-color: rgba(255,255,255,0.6);
  text-align: center;
  grid-column: 2 / 12;
  padding-top: 10px;
}

article p {
  font-size: 1.2rem;
}

table {
  font-size: 1.0rem;
}

footer {
  background-color:  rgb(79,44,39);
  color: rgb(219,184,133);
  grid-column: 1 / 13;
  text-align: center;
  padding: 10px;
}

footer a {
  color: rgb(183,181,64);
  text-decoration: none;
}

footer a:hover,
footer a:focus {
  color: rgb(219,184,133);
}

footer address {
  font-size: 1.5rem;
  font-style: normal;
  display: none;
}

footer address a {
  color: white;
  text-decoration: none;
}

footer address svg {
  color: rgb(183,181,64);
}

.top {
  font-size: 1.4rem;
}

figure {
  margin: 5px 0px 0px;
}

figure.einzel {
  display: inline-block;
  font-size: 1.0rem;
  padding: 0.5rem;
}

figure.umgeb, nav {
  display: none;
}

h1, h2, h3 {
  font-weight: normal;
  margin: 5px 10px;
}

h1 {
  font-size: 1.4rem;
}

h1 svg {
  color: rgb(183,181,64);
}

h2 {
  font-size: 1.2rem;
}

p {
  padding-left: 10px;
  padding-right: 10px;
}

iframe {
  display: none;
}

@media (min-width: 30rem) {
  table {
    font-size: 1.2rem;
  }
}

@media (min-width: 50rem) {
  table {
    font-size: 1.4rem;
  }
}

@media (min-width: 70rem) {
  body {
    background-image: url("../pics/stade03.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  header {
    background-image: url("../pics/logo01.png");
    background-repeat: no-repeat;
    background-position: 10rem;
    background-size: 120px;
  }
  header address a {
    font-size: 2.2rem;
  }
  header address a:hover {
    color: rgb(183,181,64);
  }
  header p {
    display: none;
  }
  nav {
    text-align: center;
  }
	nav ul {
		flex-direction: row;
    margin: 0 9.5rem;
	}
	nav li {
		flex: 1;
		font-size: 1.2rem;
	}
  article p {
    font-size: 1.5rem;
  }
  p {
    font-size: 1.0em;
  }
  figure.umgeb, nav {
    display: inherit;
  }
  footer {
    grid-column: 2 / 12;
  }
  footer address {
    display: inherit;
  }
  footer address a:hover {
    color: rgb(183,181,64);
  }
  .open-menu-label {
    display: none;
  }
  table {
    font-size: 1.5rem;
  }
  iframe {
    display: inherit;
  }
  #branding {
    display: none;
  }
  .top {
    font-size: 1.2rem;
  }
}
