/*mobilpan.css  Stand 27.9.25*/
/* border-box aktivieren */
html {
  box-sizing: border-box;
  background-color: #a33333;
}

body {
      max-width: 100%;
      padding: 0px;
      margin-right: auto;
      margin-left: auto;
      }

img{
  width: 100%;
}

/* CSS-Regel zur Vermeidung von Collapsing Margins */
h1, h2, h3, h4, h5, h6, p, ul, ol{
  margin-top: 0;
}
    
h1{
  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;     
  }

/* Hauptbild in der Mitte*/
.hauptbild{
  background-color: white;
  padding: 10px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 10px 10px black;
  border-width: 5px;
  border-color: green;
  border-radius: 15px;
  }

  .pfeilrechts{
  width: 80px;
  position: fixed;
  bottom: 10rem;
  right:0px;
}

.pfeillinks{
  width: 80px;
  position: fixed;
  bottom: 10rem;
  left:0px;
}

.zurueck{
  background-color: red;
  position: fixed;
  bottom: 7.5rem;
  right: 7rem;
  width: 10rem; height: 3.5rem;
  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; 
}
 