#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

#overlay-text {
  color: #212121;
  max-width: 800px;
  padding: 20px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.overlay-headline {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 20px
}

.overlay-textline {
  font-family: 'Kievit', Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}

.overlay-textline-schließen {
  font-family: 'Kievit', Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

#overlay {
  cursor: pointer;
}