@charset "UTF-8";
/* Große Breite (Laptops/Desktops, 1024px und mehr) */
@media only screen and (max-width: 1024px) {
  .header {
    height: 8em;
    width: 100vw;
  }
  .logo {
    height: 7.5em;
  }
  .ansprache {
    font-size: 8rem;
    font-weight: bold;
  }
  .navigation ul li {
    padding: 0 3%;
  }
  .navigation ul li a {
    font-size: 1.75rem;
  }
  section {
    width: 80%;
  }
}
/* Zwischengrößen (Tablets, 810px und mehr) */
@media only screen and (max-width: 810px) {
  .header {
    height: 6em;
  }
  .logo {
    display: none;
  }
  .headline p {
    font-size: 1.75rem;
  }
  .ansprache {
    font-size: 4.5rem;
  }
  .navigation ul li {
    padding: 0 2%;
  }
  .container {
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .fotoCont {
    width: 90%;
    justify-content: center;
    margin: 2em 0 2em 0;
  }
  .textCont {
    width: 90vw;
    height: auto;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .textCont h2 {
    padding: 0;
  }
  .textImpr {
    width: 90vw;
  }
  .textbox {
    width: 100%;
    margin: 0 0 2em 0;
    font-size: 1.5rem;
  }
  .textbox h2 {
    font-size: 1.5rem;
    font-style: italic;
  }
}
/* Kleine Geräte (Tablets und große Handys, 600px und mehr) */
@media only screen and (max-width: 600px) {
  .header {
    height: 6em;
    justify-content: flex-start;
  }
  table {
    width: 80%;
    font-size: 1.25rem;
  }
  /* ---------------- Menu Start ---------------- */
  .footer {
    display: none;
  }
  .toggle-button {
    display: flex;
    width: 24px;
    height: 20px;
    top: 1.5em;
    right: 15px;
  }
  nav {
    flex-direction: column;
    align-items: center;
  }
  .list-container ul {
    flex-direction: column;
    position: absolute;
    width: 30vw;
    height: auto;
    left: 65%;
    background-color: var(--text-color);
    border: solid 2px black;
    z-index: 1;
  }
  .list-container li {
    text-align: center;
  }
  .list-container li a {
    color: var(--secondary-color);
  }
  .list-container.active {
    display: flex;
    height: 100%;
    background-color: var(--primary-color);
  }
  /* ---------------- Menu Ende ---------------- */
  .marquee {
    width: 100%;
    height: 1.5em;
    font-size: 2.5rem;
  }
}
/* Sehr kleine Geräte (Handys, 480px und darunter) */
@media only screen and (max-width: 480px) {
  .header {
    height: 6em;
    width: 100vw;
  }
  .headline p {
    font-size: 1.5rem;
    margin: 0;
  }
  .logo {
    max-width: 8em;
  }
  section {
    width: 100%;
  }
  .linkbox img {
    width: 75vw;
    height: auto;
  }
  .back-face {
    padding-left: 1.5em;
  }
  .back-face h1 {
    font-size: 2rem;
  }
  .footer {
    height: 4em;
  }
  .list-container ul {
    width: 40%;
    left: 60%;
  }
  body {
    background-color: var(--text-color);
    padding-top: 10px;
    padding-bottom: 15px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 14px;
  }
  .name {
    font-size: 2rem;
    padding-top: 1%;
  }
}/*# sourceMappingURL=style_resp.css.map */