@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        135deg,
        #ffdde1 0%,
        #ee9ca7 100%
    );

    font-family: 'Poppins', sans-serif;
    color: #4a2c2c;
}

.container {
    width: 100%;
    max-width: 900px;

    background: rgba(255, 255, 255, 0.95);

    padding: 40px;
    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(8px);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;

    color: #c2185b;

    margin-bottom: 30px;
}

h2 {
    margin-top: 35px;

    text-align: center;

    font-family: 'Playfair Display', serif;
    font-size: 2rem;

    color: #d81b60;
}

p {
    font-size: 1.05rem;
    line-height: 1.9;

    text-align: justify;

    margin-bottom: 18px;
}

footer {
    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid rgba(194, 24, 91, 0.2);

    text-align: center;
}

footer p:first-child {
    font-style: italic;
    font-size: 1.05rem;
    color: #ad1457;
}

.data {
    margin-top: 12px;

    font-size: 0.95rem;
    color: #777;
}

.container::before {
    content: "❤️";
    display: block;

    text-align: center;

    font-size: 2rem;

    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.8;
    }
}