
        body {
            margin: 0;
            padding: 0;
            font-family: 'Georgia', serif; /* Plus élégant pour un mariage */
            background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #4a4a4a;
        }

        .container {
            max-width: 600px;
            padding: 40px;
            background: white;
			
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Petite ombre douce */
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #d63384; /* Le rose "MaryMe" */
        }

        p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: #d63384;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
        }

        .footer {
            margin-top: 40px;
            font-size: 0.9rem;
            color: #999;
        }
   