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

/* Base styles */
body {
    min-height: 100vh;
    font-family: "Georgia", "Times New Roman", serif;
    background: #f7f5f2;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Container */
.container {
    padding: 3rem 2rem;
    max-width: 600px;
}

/* Headings */
h1 {
    font-size: 3rem;
    letter-spacing: 0.1rem;
    font-weight: normal;
}

.subtitle {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

/* Divider */
.divider {
    width: 80px;
    height: 1px;
    background: #2f2f2f;
    margin: 2rem auto;
}

/* Date */
.date {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* Message */
.message {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Illustration */
.illustration {
    margin-bottom: 2rem;
}

.illustration img {
    width: 100%;
    max-width: 420px;
    height: auto;
}

