/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Viewport-Anweisung
███████████████████████████████████████████████████████████████████████████████████████████████
*/
@-ms-viewport {
  width: device-width;
  zoom: 1;
}
@-o-viewport {
  width: device-width;
  zoom: 1;
}
@viewport {
  width: device-width;
  zoom: 1;
}
/*
███████████████████████████████████████████████████████████████████████████████████████████████
    allgemeine Einstellungen
███████████████████████████████████████████████████████████████████████████████████████████████
*/
body {
  background-color: #dc3545;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    sans-serif;
  position: relative;
  margin: 0;
  min-height: 100vh;
  box-sizing: border-box;
}
body * {
  box-sizing: border-box;
}
body::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0) 70%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
body.home::before {
  background-size: 130% 130%;
  animation: subtleBackgroundShift 60s linear infinite;
}
@keyframes subtleBackgroundShift {
  0% {
    background-position: 0% 0%;
  }
  45% {
    background-position: 60% 40%;
  }
  50% {
    background-position: 60% 40%;
  }
  100% {
    background-position: 0% 0%;
  }
}
#wrapper {
  height: 80vh;
  position: relative;
}
#main {
  max-width: 600px;
  padding: 3rem 4rem;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 20px 20px 0 0 rgba(0, 0, 0, 0.2);
}
#main h1 {
  margin-top: 0;
  font-weight: 300;
  font-size: 3em;
  margin-bottom: 0.2em;
  line-height: 1.2em;
}
#main h1 + .subheading {
  font-weight: 500;
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 1.2em;
}
#main p {
  line-height: 1.6em;
}
#main p em {
  white-space: nowrap;
}
#main a {
  text-decoration: none;
  color: #7d1d27;
}
#main a:hover {
  text-decoration: underline;
}
#imp_wrapper {
  padding: 2rem 2rem 4rem 2rem;
}
#imp_con {
  margin: 0 auto;
  max-width: 900px;
  padding: 2rem 3rem;
  background-color: rgb(255 255 255 / 0.8);
  backdrop-filter: blur(1px);
  border-radius: 0.5rem;
}
#imp_con h1,
#imp_con h2,
#imp_con h3 {
  font-weight: 500;
}
#footer {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.4rem 2rem;
  text-align: right;
  font-size: 0.9em;
}
#footer a {
  margin-left: 1rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
#footer a:hover {
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 1000px) {
  #imp_con {
    max-width: unset;
  }
}
@media (max-width: 700px) {
  #wrapper {
    padding: 2rem 1rem;
  }
  #main {
    box-shadow: none;
    padding: 2rem;
    top: unset;
    transform: unset;
  }
  #main h1 {
    font-size: 2em;
  }
}
@media (max-width: 400px) {
  #main {
    box-shadow: none;
    padding: 2rem 1rem;
  }
  #main h1 {
    font-size: 1.6em;
  }
  #main h1 + .subheading {
    font-size: 1.5em;
  }
}
