/*mrmobilstartseite.css, Datum:250926*/
/* border-box aktivieren */
*, *::before, *::after {
  box-sizing: border-box; 
}

html {
       background-color: #a33333;
        }

  /* 2 große Bilder auf 100% Breite */
img {
    width: 100%;
    }

/* CSS-Regel zur Vermeidung von Collapsing Margins */
h1, h2, h3,h4, h5, h6, p, ul, ol{
  margin-top: 0;
}

h2{
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
  width: 50%;
  text-align: center;
  color: black;
  background-color: green;     
  }
h5 {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2rem;
    width: 50%;
    text-align: center;
    color: black;
    background-color: green; 
}

h6 {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2rem;
    width: 30%;
    text-align: center;
    color: black;
    background-color: red; 
}

/* Gestaltung des Startseiten-Headers*/
.mobilstart-header{
  background-color: #333333;
  padding: 10px;
}


/* Bild mit Maria */
.bild_mit_maria{
  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-width: 5px;
  border-color: white;
  border-radius: 15px;
  }

/*Pfeil nach oben mit position: fixed */
a.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  font-size: 1.5rem; line-height: 1;
  text-align: center; text-decoration: none;
  background: rgb(0,0,0,0.4); 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; 
}
 