body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
  "titelleiste"
  "head_0"
  "main"
  "foot";
  max-width: 56.5em;
  margin: 0em auto 0em auto;
  padding: 0em 0em 0em 0em;
  color: rgb(60,60,60); 
  background-color: rgb(255,255,255);
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;

  hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
}

body a {
  text-decoration: none;
  color: #333333;
}

figure {
	margin: 0em;
	padding: 0em;
}

header{
  margin: 0em;
  padding: 0em;
}

#titelleiste {
  grid-area: titelleiste;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin: 0em;
  padding: 0.7em 0em 0.6em 0em;
  font-size: 1.8em;
  line-height: 100%;
  background-color: white;
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  border-bottom: 1px dotted brown;
}

#head_0 {
    grid-area: head_0;
    font-variant: small-caps;
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 0.08em;
}

#head_1 {
    padding: 1em .05em 1em 2em;
}

#head_2 {
    padding: 0em .05em 0em 2em;
}

#head_3 {
    padding: 1em .05em 1em 2em;
}

#main {
    grid-area: main;
    margin: 0;
    padding: 0em 0.3em 0em 0em;
    text-decoration: none;
    color: #333333;
}

article LI {
  padding-top: 0em;
  margin-top: 0.5em;
}

#foot {
    grid-area: foot;
    font-size: 0.8em;
    font-weight: normal;
    font-variant: normal;
    margin: 0em 0em 0.5em 0.1em;
    padding: 0em 0em 0em 0em;
}

header,
nav,
article,
aside,
footer {
  border-radius: 0em 0em 0em;
  border: 0 solid;
}

h1
{
    padding: 0em 0em 0.5em 0em;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    border-bottom: 1px solid brown;
}

h2
{
    padding: 0em 0em 0.5em 0em;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    border-bottom: 1px dotted brown;
}

h3
{
    padding: 0em 0em 0em 0em;
    font-size: 1.15em;
    font-variant: small-caps;
    letter-spacing: 0.1em;
}

#h3_margin
{
    margin: 1.2em .3em .2em 1.3em;
    font-size: 1.15em;
    font-variant: small-caps;
    letter-spacing: 0.1em;
}

hr
{
   box-shadow: none;
   border-radius: 30%;
   background: silver;
   outline-style: none;
/*
   outline-style: solid;
   outline-color: silver;
   border-radius: 30%;
*/
   height: .08em;
   text-align: left;
   width: 100%;
}

#hrSmall {
   box-shadow: none;
   border-radius: 30%;
   background: green;
   outline-style: none;
/*
   outline-style: solid;
   outline-color: green;
   border-radius: 30%;
*/
   height: .03em;
   text-align: left;
   width: 100%;
}

.bottom_line
{
    border-bottom: 1px dotted brown;
}

/*---------------------------------------------------------------------------*/
@media (min-width: 40em) {

body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
  "titelleiste"
  "head_0"
  "main"
  "foot";
  margin: 0em auto 0em auto;
  padding: 0em 0em 0em 0em;
}

}
