/* styles.css */

    /* Allgemeines Styling */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #000; /* Dunkler Hintergrund f r besseren Kontrast */
      color: white; /* Schriftfarbe wei  */
      display: flex;
      flex-direction: column; /* Vertikale Aufteilung */
      height: 100vh;
    }

    header {
      text-align: center;
      padding: 20px;
      background-color: #000; /* Dunklerer bHeader-Hintergrund */
    }

    main {
      flex: 1; /* Nimmt den verf gbaren Platz ein */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-container img {
      width: 100%;
      max-width: 800px;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    /* Footer Styling */
    footer {
      text-align: center;
      padding: 10px;
      background-color: #000; /* Dunklerer Footer-Hintergrund */
    }

    a {
      color: white;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

