﻿body {
    padding-top: 1px;
}

        .whatsapp-button {
            background-color: #25D366;
            color: white;
            padding: 16px 26px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            position: fixed;
            bottom: 50px;
            right: 50px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 50px;
            animation: pulse 1.5s infinite;
        }

        .whatsappX-button {
            background-color: #25D366;
            color: white;
            padding: 16px 26px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 50px;
            animation: pulse 1.5s infinite;
        }

        .whatsapp-button:hover {
            background-color: #1ebe5d;
        }

        /* Pulsierender Effekt */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                transform: scale(1);
            }
        }
    
        .img-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

            .img-hover:hover {
                transform: scale(1.05);
                box-shadow: 0 10px 20px rgba(0,0,0,0.25);
            }



