/* Style Sheet für Webseiten Projekt Geistheiler */

body {
min-height: 100vh;
padding: 0;
margin:  0;
background-color: #8e9e8f;
display: flex;
flex-direction: column;
quotes: "„" "“" "‚" "‘";
}

figure {
  border: 1px solid #ccc;
  padding: 10px;
  max-width: 300px;
  margin: auto;
  text-align: center;
}

figcaption {
  font-style: italic;
  font-size: 0.9em;
  color: black;
  margin-top: 5px;
}

img {
  max-width: 100%; /* Verhindert, dass das Bild aus dem Container herausragt */
  height: auto;
}

#hilfestellung {
  display: flex; /* Oder display: inline-block; für das Bild und den Text-Div */
  align-items: center; /* Zentriert Bild und Text vertikal */
  gap: 20px; /* Abstand zwischen Bild und Text */
}

#hilfestellung-bild {
    width: 400px; /* Beispielbreite */
    height: auto;
   }
   
#hilfestellung-text {
    /* Text-Container nimmt verfügbaren Platz ein */
}

content {
  flex-grow: 1; /* Nimmt verfügbaren Platz ein */
}

main {
  padding-left: 1em;
  padding-right: 1em;
  
  li {
			  padding-top: 5px; /* Abstand von oben zum Text */
			  padding-bottom: 5px; /* Abstand vom Text nach unten */
   }
}

pre {
  padding-left: 1em;
  padding-right: 1em;
}

.navleiste {
	  position: 0;
	  margin: 0;
	  left: 0;
    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #838b8b;
    }
    
    ul li {
      float: left;
    }
    
    ul li a {
      display: block;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }
    
    ul li a:hover {
      background-color: #111111;
    }
    
    select {
      padding: 14px 16px;
    }
}

h2 {
  color: white;
}

#myFooter {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #838b8b;;
  color: white;
}
