* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Arial, sans-serif;

    /* Romantic Pink Gradient Background */
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center Container */
.container {
    text-align: center;
}

/* Card */
.card {
    padding: 40px;
    border-radius: 20px;

    /* Cream + White Gradient */
    background: linear-gradient(135deg, #fff5e6, #ffffff);

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 320px;

    animation: fadeIn 1s ease;
}

.card h1 {
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Button */
button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    background: #ff4d6d;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #e60039;
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}