/*mobilresp.css Stand: 1.10.25*/
/* border-box aktivieren */
*, *::before, *::after {
  box-sizing: border-box; 
}

html {
  background-color: #a33333;
      }

body {
   max-width: 100%;
   padding: 20px;
   margin-right: auto;
   margin-left: auto;
      }

/* CSS-Regel zur Vermeidung von Collapsing Margins */
h1, h2, h3, h4, h5, h6, p, ul, ol{
  margin-top: 0;
}
    
h1, h2, h3{
  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;
}    
h5{
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
  width: 50%;
  text-align: center;
  background-color: green;     
  }

.breite_100pro{
  width: 100%;
}

/* 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;
  }

.pfeilrechts{
  width: 150px;
  position: fixed;
  bottom: 15rem;
  right:0px;
}

.pfeillinks{
  width: 150px;
  position: fixed;
  bottom: 15rem;
  left:0px;
}



.zurueck{
  background-color: red;
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  width: 5rem;
  height: 2rem;
  padding: 0.5rem; border-radius: 0.5rem; margin: 0.5rem;
}

/*Pfeil nach oben mit position: fixed */
a.back-to-top {
  position: fixed;
  bottom: 1rem;
  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: 10rem; 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);
}

/* Grundlegende Gestaltung für den Footer */         
.site-footer {
  background-color: black;
  color: white; 
  text-align: right; 
  padding: 0.5rem; 
}
.site-footer a {
  color: white; 
  text-decoration: none; 
}
 