 @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        .wedding-contenedor {
            position: relative;
            width: 100%;
            max-width: 600px;
            background: linear-gradient(to bottom, #fcfcfc, #fcfcfc);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 20px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1.5s ease forwards;
            margin: auto
           
            
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .decorative-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .decorative-border:before,
        .decorative-border:after {
            content: "";
            position: absolute;
            background-color: #bd933f;
            opacity: 0.3;
        }
        
        .decorative-border:before {
            width: 80px;
            height: 80px;
            top: -20px;
            right: -20px;
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }
        
        .decorative-border:after {
            width: 60px;
            height: 60px;
            bottom: -15px;
            left: -15px;
            border-radius: 50%;
            animation: float 4s ease-in-out infinite 1s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(10deg);
            }
        }
        
        .hearts {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .heart {
            position: absolute;
            font-size: 16px;
           /* color: #e8c4c4;*/
           color: #bd933f;
            opacity: 0;
            animation: fall 6s linear infinite;
        }
        
        @keyframes fall {
            0% {
                top: -10%;
                opacity: 0;
                transform: translateX(0) rotate(0deg);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                top: 110%;
                opacity: 0;
                transform: translateX(30px) rotate(360deg);
            }
        }
        
        .header1 {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .names {
            font-family: 'Dancing Script', cursive;
            font-size: 3rem;
            margin-bottom: 10px;
            color:#bd933f;
            position: relative;
            display: inline-block;
        }
        
        .names:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, #bd933f, transparent);
            animation: expandLine 2s ease forwards;
            animation-delay: 1s;
        }
        
        @keyframes expandLine {
            from {
                width: 0;
            }
            to {
                width: 100px;
            }
        }
        
        .date {
            font-size: 1rem;
            margin-top: 20px;
            letter-spacing: 2px;
            animation: fadeIn 1s ease forwards;
            animation-delay: 1.5s;
            opacity: 0;
            
        }
        .date1 {
            font-size: 1rem;
            margin-top: 20px;
            letter-spacing: 2px;
            animation: fadeIn 1s ease forwards;
            animation-delay: 1.5s;
            opacity: 0;
            text-align: center;
            
        }
        
        .message {
            text-align: center;
            line-height: 1.6;
            margin-bottom: 30px;
            animation: fadeIn 1s ease forwards;
            animation-delay: 2s;
            opacity: 0;
            text-size-adjust: auto;
        }
        
        .detalle {
            /*background-color: rgba(183, 110, 121, 0.1);*/
            background-color: #EDE8E0; 
           /* background-color: #faf8ed;          */
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            animation: fadeIn 1s ease forwards;
            animation-delay: 2.5s;
            opacity: 0;
            text-size-adjust: auto;
        }
        
        .detalle p {
            margin: 10px 0;
        }
        
        .detalle i {
            margin-right: 10px;
            color: #b76e79;
        }
        
        .rsvp {
            text-align: center;
            margin-top: 30px;
            animation: fadeIn 1s ease forwards;
            animation-delay: 3s;
            opacity: 0;
        }
        
        .rsvp-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #b76e79;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
        }
        
        .rsvp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
        }
        
        .footer {
            text-align: center;
            margin-top: 30px;
            font-size: 0.9rem;
            opacity: 0.7;
            animation: fadeIn 1s ease forwards;
            animation-delay: 3.5s;
            opacity: 0;
        }
        
        @media (max-width: 600px) {
            .wedding-container {
                padding: 25px;
            }
            
            .names {
                font-size: 2.2rem;
            }
            
            .date {
                font-size: 1rem;
            
            }
            .typewriter {
            overflow: hidden;
            border-right: 0.15em solid orange;
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: 0.15em;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        }
    