@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

body {
  background: url("../media/background/neuerwirt1.jpeg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

#area_impressum {
  margin-top: 9dvh;
  height: 91dvh;
  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center; /* vertikal zentrieren */
  padding-left: 10px;
  padding-right: 10px;
}
#area_impressum #impressum_content {
  width: 90%;
  height: 80dvh;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding-left: 5px;
  padding-right: 5px;
}

/* ---- MEDIA QUERIES ---- */
/* Media Query: Tablet Portrait (z. B. iPad Pro 11") */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #area_impressum #impressum_content {
    width: 70%;
    height: 80dvh;
  }
}
@media only screen and (max-width: 932px) and (orientation: landscape) {
  #area_impressum {
    margin-top: 19dvh;
  }
  #area_impressum #impressum_content {
    width: 70%;
    height: 80dvh;
  }
}
/* Media Query: Tablet Landscape (z. B. iPad Pro 11") */
@media only screen and (min-width: 933px) and (orientation: landscape) {
  #area_impressum #impressum_content {
    width: 60%;
    height: 80dvh;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  #area_impressum #impressum_content {
    width: 70%;
    height: 80dvh;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
  #area_impressum #impressum_content {
    width: 70%;
    height: 80dvh;
  }
}
@media only screen and (min-width: 1400px) {
  #area_impressum #impressum_content {
    width: 70%;
    height: 80dvh;
  }
}/*# sourceMappingURL=sfr_website_impressum.css.map */