body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  align-items: center;
}

.content-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60%;
}

@media screen and (max-width: 768px) {
  .content-container {
    max-width: 100%;
  }
}

.logo-container {
  padding-left: 4rem;
  padding-right: 4rem;
}

.logo {
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
}

.logo-small {
  margin-bottom: 2rem;
  max-width: 100px;
  max-height: auto;
  object-fit: contain;
}

.imprint-container {
  margin-top: 20vh;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (max-width: 768px) {
  .imprint-container {
    margin-top: 10vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

a {
  color: white;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}
