body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Basis-Stile für Content-Area */
.content-area {
  position: relative;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  top: 155px;
  bottom: 200px;
}

/* Stile für den Image-Container im mobilen Bereich */
.image-container {
  position: relative;
  background-image: url('Bilder/JITSEA_Schulung.png');
  height: 400px;
  margin-top: 150px;
  margin-bottom: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {

  .content-area {
    position: fixed;
    top: 155px; /* Höhe des Headers */
    bottom: 60px; /* Höhe des Footers */
    left: 0;
    right: 0;
    overflow-y: auto; /* Ermöglicht das Scrollen innerhalb des Content-Bereichs */
    background-color: white;
    z-index: 1; /* hinter dem image */
  }
  
  .image-container {
    position: relative;
    height: 800px;
    margin-top: 500px; /* zusätzlicher Abstand zum Content-Bereich */
    margin-bottom: 60px; /* Platz für den Footer */
    z-index: 2; /* vor dem Content Bereich bitte */
  }
  .Left {
    text-align: left;
    margin-left: 360px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  padding: 0px 0;
  text-align: center;
  z-index: 3; /* Höchster z-index */
}

/* Stile für Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px 0;
  z-index: 3;
}

/* Stile für Navigation */
nav {
  background-color: #444;
  padding: 20px 10px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
  line-height: 2.0; 
}

/* Stile für Links */
a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: goldenrod;
  font-weight: bold;
}

a:active {
  color: rgb(9, 38, 157);
}

a:visited {
  color: goldenrod;
}
