   .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-image: url("/images/bg_footer.jpg");
/*    background-color: #AEEEEE; */
    
    color: #000000;
    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: 0px; /* Abstand zwischen Menü-Punkten */
  }

  .footer-column a {
    color: black;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-column a:hover {
    color: blue; /* 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; }



    .metro-card{
      width:320px;
      background:var(--tile);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:24px;
      text-align:center;
      display:flex;
      flex-direction:column;
      gap:18px;
      align-items:center;
    }

    .metro-title{
      font-size:20px;
      font-weight:700;
      color:#111827;
      letter-spacing:0.2px;
    }

    .metro-sub{
      font-size:13px;
      color:#5b6470;
    }

    .metro-btn{
      appearance:none;
      -webkit-appearance:none;
      border:0;
      background:var(--accent);
      color:white;
      padding:10px 20px;
      border-radius:10px;
      font-weight:600;
      font-size:15px;
      cursor:pointer;
      box-shadow: 0 6px 12px rgba(0,120,212,0.16);
      transition:transform .12s ease, box-shadow .12s ease, opacity .12s;
    }

    .metro-btn:hover{ transform:translateY(-2px); }
    .metro-btn:active{ transform:translateY(0); opacity:0.95; }
    .metro-btn:focus{ outline:3px solid rgba(0,120,212,0.18); outline-offset:3px; }


    .more-question {
  margin-top: 80px; /* Abstand nach oben */
}



  .eintrag {
            display: flex;
            margin-bottom: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .jahr {
            min-width: 100px;
            font-size: 1.4em;
            font-weight: bold;
            color: #0056b3;
        }

        .text {
            flex: 1;
	                font-weight: normal;
        }
