body {
  background: #000;
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-weight: 400;
  font-size: 36px;
  margin: 0;
}

@media (width <= 900px) {
  body {
    font-size: 24px;
  }
  .impressum-content h2, .impressum-content p, .impressum-content strong, .impressum-content a {
    font-size: 24px !important;
  }
}

@media (width > 900px) and (width <= 1900px) {
  body {
    font-size: 30px;
  }
  .impressum-content h2, .impressum-content p, .impressum-content strong, .impressum-content a {
    font-size: 30px !important;
  }
}

@media (height <= 400px) {
  body {
    font-size: 18px;
  }
  .impressum-content h2, .impressum-content p, .impressum-content strong, .impressum-content a {
    font-size: 18px !important;
  }
}

@media (width <= 480px) {
  body {
    font-size: 18px;
  }
  .impressum-content h2, .impressum-content p, .impressum-content strong, .impressum-content a {
    font-size: 18px !important;
  }
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 0;
}

.impressum-content {
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
  text-align: center;
  max-width: 62vw;
  margin: 0 auto;
}

.impressum-content h2 {
  font-size: 36px;
  margin: 0;
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-weight: 400;
}

.impressum-content p {
  font-size: 36px;
      line-height: 1.5;
  margin: 0;
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-weight: 400;
}

.impressum-content strong {
  font-family: Quicksand, sans-serif;
  font-weight: 400;
  font-size: 36px;
}

.impressum-content a {
  font-family: Quicksand, sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  text-decoration: none;
  transition: color 0s;
}

.impressum-content a:hover {
  color: #F60;
}

.fade-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 1000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.fade-overlay.fadeout {
  opacity: 0;
}

.email-link {
  color: #fff;
  text-decoration: none;
  transition: color 0s;
}

.email-link:hover {
  color: #F60;
} 