body {
  background-color: var(--color-sand);
  font-family: var(--font-base);
  margin: 0;
}

.impressum-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 4rem;
}

.impressum-content {
  max-width: 960px;
  width: 100%;
  background-color: var(--color-white);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius-md);
  line-height: 1.6;
}

.impressum-content p {
  margin-bottom: 1rem;
}

.pdf-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin: 5vh auto;
  width: 100%;
  max-width: calc(100vw - 250px);
  min-width: 280px;
}

.pdf-page-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pdf-page-wrapper canvas {
  display: block;
}

.pdf-links-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pdf-link {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}

.pdf-link:hover {
  background-color: rgba(0, 0, 255, 0.1);
}
