        /* Allgemeines Styling */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #5ab18f;
            color: #333;
        }

        /* Kopfbereich mit Bild */
        header {
            background-image: url('background2.jpg'); /* Bild-URL ersetzen */
            background-size: cover;
            background-position: center;
            height: 300px;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        header h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
            margin: 0;
        }

        /* Hauptbereich mit Schaltflächen */
        main {
            padding: 20px;
            text-align: center;
            background: linear-gradient(to bottom,  #3b8d6d 18%,  #5ab18f  100%);
        }
        


        .button {
            display: block;
            width: 250px;
            margin: 20px auto;
            padding: 20px;
            font-size: 1.5rem;
            text-align: center;
            color: white;
            background-color:  #0a4c32;
            text-decoration: none;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .button:hover {
            background-color:  #0f7950;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
        }

        /* Fußbereich */
        footer {
            background-color: #343a40;
            color: white;
            text-align: center;
            padding: 15px;
            position: fixed;
            bottom: 0;
            width: 100%;
            font-size: 0.9rem;
        }
