body {
    
background-color:#F8F8F8;

}

.parent {
  display: grid;
  grid-template: auto 1fr auto / auto 1fr auto;
  font-weight: bold;
  font-family: "Courier New"; 
}

header {
    padding: 2rem;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    grid-column: 1 / 4;
    background: rgb(46,178,255);
    background: -moz-linear-gradient(90deg, rgba(46,178,255,1) 0%, rgba(19,195,251,1) 50%, rgba(0,245,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(46,178,255,1) 0%, rgba(19,195,251,1) 50%, rgba(0,245,255,1) 100%);
    background: linear-gradient(90deg, rgba(46,178,255,1) 0%, rgba(19,195,251,1) 50%, rgba(0,245,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2eb2ff",endColorstr="#00f5ff",GradientType=1);
    color: white;
}

.linke-seite {
    margin-top: 9em;
    grid-column: 1 / 2;
}

.side {
  width: 15rem;
}

main {
    grid-column: 2 / 3;
    background-color: #FFFFFF;
}

.container {
  padding-top: 7rem;
}

.post, .inhalt {
  border-bottom: 1px dotted #000000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: 1px solid #ebeaea;
  border-right: 1px solid #ebeaea;
}


.rechte-seite {
    margin-top: 9em;
    grid-column: 3 / 4;
}

a:link {
    color: #000;
    text-decoration: none;
  }
  
  a:visited {
    color: #000;
    text-decoration: none;
  }
  
  a:hover {
    color: #000;
    text-decoration: underline;
  }
  
  a:active {
    color: #000;
    text-decoration: none;
  }

  header a:link {
    color: #fff;
    text-decoration: none;
  }
  
  header a:visited {
    color: #fff;
    text-decoration: none;
  }
  
  header a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  header a:active {
    color: #fff;
    text-decoration: none;
  }

  footer a:link {
    color: #fff;
    text-decoration: none;
  }
  
  footer a:visited {
    color: #fff;
    text-decoration: none;
  }
  
  footer a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  footer a:active {
    color: #fff;
    text-decoration: none;
  }

  #spruch:hover{
      text-decoration: underline;
      color: #000;
  }

  .schnabeltier {
    height: 100%;
    background-color: #444444;
  }

  .pauljoachim {
  border-bottom: 1px dotted #000000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: none;
  }

  .impressum{
    padding-top: 5rem;
    font-family: "Times New Roman", Times, serif;
  }

footer {
    padding: 1rem;
    grid-column: 1 / 4;
    background-color: #444444;
    width: 100%;
    padding-left: 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-family: "Courier New"; 
}

@media screen and (max-width:992px) {
    main{width:100%}
    .linke-seite{display:none}
    .rechte-seite{display:none}
    .pauljoachim{display:block}
   }