/* Romantic Background */
body {
    text-align: center;
    background: linear-gradient(to bottom right, #ffafbd, #ffc3a0);
    font-family: 'Arial', sans-serif;
    color: #6b1d36;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.container {
    margin-top: 50px;
    background: white;
    padding: 30px;
    width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Heading */
h1 {
    color: #d63384;
    font-size: 28px;
}

/* Heart Animations */
.hearts {
    font-size: 25px;
    margin: 20px 0;
    animation: floatHearts 2s infinite alternate ease-in-out;
}

@keyframes floatHearts {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* Message */
.message {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

/* Invitation Box */
.invitation-box {
    background: #ffe5ec;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.invitation-box h2 {
    color: #ff4d6d;
}

/* CTA (Call to Action) */
.cta {
    font-size: 20px;
    margin-top: 15px;
    font-weight: bold;
}

/* Button */
.button {
    background-color: #ff4d6d;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.button:hover {
    background-color: #e63950;
    transform: scale(1.1);
}
