body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f7f7f7;
        }

        .animate-button {
            background: linear-gradient(90deg, #A9A9A9, #ff1493, #A9A9A9);
            background-size: 200% 200%;
            color: white;
            padding: 15px 30px;
            font-size: 16px;
            text-decoration: none;
            border-radius: 30px;
            font-family: Arial, sans-serif;
            transition: transform 0.2s ease;
            animation: gradientShift 3s infinite;
            display: inline-block;
            cursor: pointer;
        }

        .animate-button:hover {
            transform: scale(1.05);
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }