body {
  margin: 0;
}

.flex-wrapper {
  display: flex;
  width: 7150px;
  justify-content: space-between;
  padding: 60px 10px;
  margin: 105px 0 0 0;
  border-top: solid black 2px;
}
@media screen and (max-width: 600px) {
  .flex-wrapper {
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 30px 0 0;
  }
}

@media screen and (max-width: 600px) {
  img {
    width: 90%;
    height: auto;
    padding-top: 20px;
  }
}

.logo {
  position: fixed;
  top: 30px;
  right: 50px;
  width: 200px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .logo {
    position: absolute;
    width: 150px;
    right: 20px;
  }
}

.impressum {
  font-size: 0.7em;
  position: fixed;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 600px) {
  .impressum {
    width: 100%;
    background: white;
    padding: 10px;
    text-align: center;
    bottom: 0;
    position: relative;
  }
}
