body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    align-content: center;
}

h1 {
    margin-bottom: 20px;
}

.images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}

.icon-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit; /* Farbe der Icons steuern */
}

.icon-button svg {
    width: 40px;   /* Größe der Icons */
    height: 40px;
    fill: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-button:hover svg {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Optional: eigene Farben */
.icon-button.facebook { color: #1877f2; }
.icon-button.instagram { color: #e1306c; }
