   bo {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 40px;
    }

    .mm {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap; /* für mobile Geräte */
      height: 200px;
    }

    .circle-item {
      text-align: center;
      width: 200px;
    }

    .circle-img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #ccc;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .circle-img:hover {
      transform: scale(1.05);
    }

    .circle-text {
      margin-top: 12px;
      font-size: 16px;
      color: #333;
    }


.fv {
    height: 1cm; /* genau 1 Zentimeter (CSS-Einheit) */
    width: 100%;
    background:  linear-gradient(to right, #2C2E84, #00AFEF);
  }



  footer {
    background-color: #b0d4f1;
    color: black;
    padding: 30px 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 3 Spalten */
    gap: 20px; /* Abstand zwischen Spalten */
  }

  .footer-column {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column li {
    margin-bottom: 10px; /* Abstand zwischen Menü-Punkten */
  }

  .footer-column a {
    color: black;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-column a:hover {
    color: #00adef; /* Metro UI Hover-Farbe */
  }

  /* Responsive für kleine Bildschirme */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr; /* 1 Spalte auf Mobil */
    }
  }


   .prev { left: 10px; }
    .next { right: 10px; }
