:root{
  --hintergrundfarbe: rgb(170, 170, 170);
  --kopftexfarbe: rgb(255,255,255);
  --seitenfarbe: rgb(238,233,233);
  --seitenrahmenfarbe: rgb(0, 0, 0);
  --headerfussfarbe: rgb(75,74,74);
  --fusstextfarbe: rgb(255,255,255);
  --fusslinkfarbe: rgb(255,255,255);
  --keinzutrittfarbe: rgb(255, 0, 0);
  --bilderrahmen: rgb(0,0,0); 
  --linkfarbe:rgb(128,0,0);
}

*{
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: 'Times New Roman', Times, serif;
}

html, body{
  background-color: var(--hintergrundfarbe);
  height: 100%;
}

/**** Einstellungen seite ****/

#seite{
  background-color: var(--seitenfarbe);
  max-width: 67rem;
  margin: 0 auto;
  padding-bottom: 4rem;
  position: relative;
  min-height: 135%;
  border-left: 2px solid var(--seitenrahmenfarbe);
  border-right: 2px solid var(--seitenrahmenfarbe);
}


#seite h1{
  text-align: center;
  line-height: 3rem;
  font-size: 2rem;
  padding-top: 3rem;
}

/**** Einstellungen header ****/

header{
  background-color: var(--headerfussfarbe);
  height: 5rem;
}
header p{
  color: var(--kopftexfarbe);
  font-weight: bold;
  font-size: 1.5rem;
  padding-left: 0.9rem;
  padding-top: 0.2rem;
}

header .p2{
  padding: 0.7rem 1.5rem;
}

/**** Einstellungen article ****/

article{
  margin: 1rem 3rem;
}

article h2{
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.6rem; 
}

article h3{
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.6rem; 
}

article p{
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin: 1rem;
}

article p a{
  color: var(--linkfarbe);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
}

.mittig{
  text-align: center;
}

.fett{
  font-weight:700;
}

.fett-2{
  font-weight: bolder;
}

article .autor{
  font-weight: bold;
  text-align: right;
}

.bild_links{
  float: left;
  margin: 0 1rem 1rem 1rem;
}

.bild_rechts{
  float: right;
  margin: 0 1rem 1rem 1rem;
}

/**** Einstellungen footer ****/
footer{
  background-color: var(--headerfussfarbe) ;
  position: absolute;bottom: 0;
  width: 100%;
  color: var(--fusstextfarbe);
  line-height: 2rem;
  font-size: 2rem;
}

footer .fuss{
  display: flex;
  justify-content: space-evenly;
}

footer .fuss a{
  text-decoration: none;
  color: var(--fusslinkfarbe);
}

footer .fuss a:hover{
  text-decoration: underline;
}

.info{
  margin-top: 3rem;
  text-align: center;
  font-size: 3rem;
}

@media only screen and (max-width: 380px) {

  article{
    margin: 2rem 0.2rem;
  }

  article p{
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin: 0.3rem;
  }
}