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;
}
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);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  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;
}

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;
}