/* Allgemein */

body {
    font-family: "Yanone Kaffeesatz", sans-serif;
    font-size: 1.6rem;
  }
  
  .blue {
    color: #2E74B5;
  }
  
  #products,
  #about {
    padding-top: 100px;
  }
  
  .navbar,
  .carousel {
    border-bottom: 1px solid #888;
  }
  
  .impressum {
    color: black;
    text-decoration: none;
  }

  .impressum:active,
  .impressum:hover {
    color: #2E74B5;
  }

  /* Navigation */
  
  .nav-link {
    cursor: pointer;
  }
  
  .nav-link:active,
  .nav-link:hover {
    color: #2E74B5 !important;
  }
  
  .icon-link:active svg,
  .icon-link:hover svg {
    color: #2E74B5;
  }


  /* Slider */
  
  .slider-image {
    width: 100vw;
    height: 70vh;
    background-size: cover;
    background-position: center;
  }
  
  /* Produkt Cards */
  
  .card-image {
    height: 500px;
    background-size: cover;
    background-position: center;
  }
  
  @media (max-width: 991px) {
    .card-group {
      display: flex;
      flex-flow: column wrap;
    }
  }
  
  /* Über uns */
  
  .about-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
  }
  
  /* Footer */
  
  .footer {
    font-family: sans-serif;
    font-size: 1rem;
    text-align: center;
    border-top: 1px solid #888;
  }