body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
header {
  background-color: rgb(217, 242, 208);
  color: #2c3e50;
  padding: 20px;
  text-align: center;
  width: 100%;
}
img {
  display: flex;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  position: absolute;
}
.navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  text-align: center;
  width: 100%;
  top: 0px;
  z-index: 1000;
}
nav {
  background-color: #34495e;
  padding: 10px;
  text-align: center;
  width: 100%;
}
nav ul {
  list-style: none;
  padding: 0;
}
nav ul li {
  display: inline;
  margin: 0 15px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: rgb(82, 102, 255);
}
section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: rgb(217, 242, 208);
  border: 2px solid gray;
  border-radius: 6px;
}
h2 {
  color: #2c3e50;
}
footer {
  display: flex;
  justify-content: center;
  flex-direction: row;
  background-color: #2c3e50;
  color: white;
  text-align: center;
  font-size: 18px;
  gap: 300px;
}

.text-block {
  padding-top: 250px;
  position: relative;
  background: url("./5328308467636764125.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;

}

.text-block::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.text-block section {
  position: relative;
  z-index: 2;
}

section main {
  display: flex;
  justify-content: center;
  padding: 10px;
  font-size: 20px;
  color: #34495e;
  border-radius: 10px;
}

section p {
  font-size: 20px;
}

.impressum {
  color: #fff;
  font-size: 24px;
}

/* header img {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  position: static; 
} */