<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --hell: rgb(213, 228, 235);
    --dunkel: rgb(21, 24, 65);
  }
  
  body {
    margin: 0;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: rgb(0,51,153)
    }
  
  header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  
  nav {
    position: sticky;
    top: 0;
    font-weight: 500;
  
    /* Das ist dafÃ¼r, dass die Navigation jederzeit anklickbar ist */
    z-index: 99;
  }
  
  footer,
  nav {
    backdrop-filter: blur(8px);
  }
  
  .Begruesungsfoto {
    width: 100%;
    height: 250px;
  }
  
  @media screen and (min-width: 800px) {
    .Begruesungsfoto {
      height: 600px;
    }
  }
  
  .Begruesungsfoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .Produkt_Begruesungsfoto {
    width: 100%;
    height: 250px;
  }
  
  @media screen and (min-width: 1px) {
  .Produkt_Begruesungsfoto {
      height: 600px;
    }
  }
  .Produkt_Begruesungsfoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  footer ul,
  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  footer ul li,
  nav ul li {
    padding: 5px;
  }

  footer ul li,
  nav ul li a {
    font-weight: 600;
    font-size: smaller;
    padding: 5px;
  }
  
  .mitte {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    box-sizing: border-box;
  
    /* Das ist dafÃ¼r, dass die Ãœberschrift nicht hinter dem verschwomennen Bereich ist */
    padding-top: 48px;
    transform: translateY(-48px);
  }
  
  #services_section {
    padding: 50px 0;
    background-color: var(--primary-color);
  }
  #services_section h2 {
    font-size: 50px;
    text-align: center;
  }
  .flex_container{
    margin-top: 50px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .card{
    width: 250px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 60px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .card *{
    text-align: center;
  }
  .card a{
    background-color: var(--hell);
    width: min-content;
    padding: 5px 20px;
    border-radius: 50px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-color);
    border: 4px solid var(--main-brand-color);
  }
  .card a:hover{
    background: transparent;
  }
  .card_produkt_text{
    width: 400px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 60px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .card_produkt_text *{
    text-align: left;
  }
  .card_produkt_text a{
    background-color: var(--hell);
    width: min-content;
    padding: 5px 20px;
    border-radius: 5px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-color);
    border: 4px solid var(--main-brand-color);
  }
  .card_produkt_text a:hover{
    background: transparent;
  }
  .card_produkt_pic{
    width: 400px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 60px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .card_produkt_pic *{
    text-align: right;
  }
  .card_produkt_pic a{
    background-color: var(--hell);
    width: min-content;
    padding: 5px 20px;
    border-radius: 5px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-color);
    border: 4px solid var(--main-brand-color);
  }
  .card_produkt_pic a:hover{
    background: transparent;
  }</pre></body></html>