/*mobilresp.css Stand: 17.3.26  */
/* zum ersten Mal media eingebaut*/

/* border-box aktivieren */
*, *::before, *::after {
  box-sizing: border-box; 
}

html {
  background-color: #a33333;
}

/* Anpassung an die Displaygröße gemäß Wolf Seite 489*/
@media only screen and (width < 30em) {
  body {
    width: 100%;
  }
}
@media only screen and (30em <= width <= 80em) {
  body {
    width: 60%;
  } 
}
@media only screen and (width >= 80em) {
 body {
  width: 40%;
 } 
}

body {
   padding: 0px;
   margin-right: auto;
   margin-left: auto;
   background-color:#a33333; /* Hintergrundfarbe */
   color: black; /* Schriftfarbe */
   font-family: Verdana, Arial, Helvetica, sans-serif;
      }

/* CSS-Regel zur Vermeidung von Collapsing Margins */
h1, h2, h3, h4, h5, h6, p, ul, ol{
  margin-top: 0;
}

/* für den großen Kopf: Logo + Schriftzug Eifelstilzchen */
.grosser_kopf{
  width: 100%;
}

/* für den normalen Kopf: Logo + Schriftzug Eifelstilzchen*/
.normaler_kopf{
  position: relative;
  top: 0em;
  left: 0em;
  width: 100%;
}

/* burger: Anzeige des burger Symbols auf einigen Seiten,
   bei index_mit_menue mit Navigation
   sonst ohne Navigation aber mit Link zur Seite
   index_mit_menue*/
#burger_ohne_menue{
  width: 3rem;
  position: fixed;
  right: 1em;
  top: 1em;
  }

/* Hauptbild in der Mitte*/
.hauptbild{
  align-content: center;
  height: auto;
  background-color: white;
  padding: 10px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 10px 10px black;
  border-radius: 15px;
  }

/*Breite des Hauptbildes*/
.hauptbild_breite{
  width: 100%;
}

/*Text im gelben Kasten */
.gelber_kasten {
  text-align: center;
  background-color: yellow;
  align-content: center;
  height: auto;
  padding: 10px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 10px 10px black;
  border-width: 5px;
  border-color: white;
  border-radius: 15px;
}   

.zurueck{
  width: max-content;
  background-color: blue;
  color:white;
  border-width: 20px;
  border-radius: 35px;
  border-color: black;
  box-shadow: 10px 10px 10px 10px black;
  padding: 10px;
  margin: 0em;
}

#rundgang_knopf {
  width: max-content;
  position: relative;
  left: 40%;
  background-color: blue;
  color:white;
  border-width: 20px;
  border-radius: 35px;
  border-color: black;
  box-shadow: 10px 10px 10px 10px black;
  padding: 10px;
  margin: 0em;
}

/*Pfeil nach oben mit position: fixed */
a.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 0.5rem;
  font-size: 1.5rem; line-height: 1;
  text-align: center; text-decoration: none;
  background: rgb(0,0,0,0.7); color: white;
  width: 12rem; height: 2.5rem;
  padding: 0.5rem; border-radius: 0.5rem; margin: 0.5rem;
}
a.back-to-top:hover, a.back-to-top:focus {
  background-color: rgb(0,0,0,0.6);
}

/* für den Footer */         
.site-footer {
  background-color: black;
  color: white; 
  text-align: right; 
  padding: 0.5rem;
  margin-top: 5rem; 
}
.site-footer a {
  color: white; 
  text-decoration: none; 
}
 

/* Text in grünem Hintergrund*/
.text_mit_gruen {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
  width: 50%;
  text-align: center;
  background-color: green; 
}

/* Mini-Text mit rotem Hintergrund */
.minitext {
  width: max-content;
  align-content: center;
  color: black;
  background-color: red;
}

.pfeilrechts{
  width: 150px;
  position: fixed;
  bottom: 15rem;
  right:0px;
}

.pfeillinks{
  width: 150px;
  position: fixed;
  bottom: 15rem;
  left:0px;
}
