* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  min-height: 100svh;
  background-color: #2e383e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 70px 0;
  font-family: "Red Hat Display", sans-serif;
  gap: 50px;
}
a {
  text-decoration: none;
  color: #3f8cfd;
}
.logo {
  width: 200px;
}
.impressum-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.impressum-container h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: white;
  font-size: 25px;
  font-weight: normal;
  text-transform: uppercase;
}
.logo img {
  width: 100%;
  object-fit: contain;
}
.imressum-content {
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid #3f8cfd;
}

.imressum-content h4,
.imressum-content p {
  color: white;
}
.imressum-content p {
  width: 100%;
  margin: auto;
  text-align: inherit;
}
.fc-white {
  color: white !important;
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 700px) {
  .imressum-content {
    width: 80%;
  }
  .imressum-content p {
    width: 100%;
    margin: auto;
    text-align: inherit;
  }
}
