:root {
    --bg: #f7f5f2;
    --text: #5a544f;
    --soft: #8b827a;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Georgia, serif;
}

/* centered memorial card */

.wrap {
    text-align: center;
    max-width: 700px;
    padding: 40px 28px;
}

img {
    width: 100%;
    max-width: 420px;
    opacity: .95;
}

/* script-like heading */

h1 {
    margin-top: 24px;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: .5px;
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
}

p {
    margin-top: 14px;
    line-height: 1.7;
    color: var(--soft);
    font-size: 17px;
}

/* gentle footer note */

.note {
    margin-top: 28px;
    font-size: 14px;
    color: #a29a92;
}

