@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-v20-latin-regular.woff2') format('woff2'),
         url('fonts/poppins-v20-latin-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-v20-latin-700.woff2') format('woff2'),
         url('fonts/poppins-v20-latin-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100vh;
            background-color: #f9f9f9;
            color: #333;
        }
header {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    /*background-color: #4CAF50; /* Grüner Hintergrund */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    max-width: 90%; /* Größeres Logo, maximal 80% der Breite des Headers */
	max-height: 150px;	
    height: auto;
}
@media (max-width: 600px) {
    header img {
        max-width: 90%; /* Verkleinert das Logo auf 60% der Breite des Headers */
    }
}
        main {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }
        main h1 {
            font-size: 2.5em;
            color: #4CAF50;
        }
        main p {
            font-size: 1.2em;
            margin: 20px 0;
        }
        main a {
            color: #4CAF50;
            text-decoration: none;
            font-weight: bold;
        }
        main a:hover {
            text-decoration: underline;
        }
        footer {
            text-align: center;
            padding: 10px;
            background-color: #f1f1f1;
        }
        footer a {
            margin: 0 10px;
            text-decoration: none;
            color: #4CAF50;
        }
        footer a:hover {
            text-decoration: underline;
        }
.icon-container {
    margin: 5px 0;
}

.icon-container img {
    width: 100px;
    height: 100px;
    fill: #4CAF50; /* Farbe des Icons, falls es SVG ist */
}
