:root {
    --bg-color: #f7f3ed; /* Very light cream/off-white */
    --primary-text-color: #5c6a5b; /* Muted sage green */
    --secondary-text-color: #8c7f76; /* Soft, warm grey-brown */
    --accent-color: #a4916a; /* Desaturated gold/ochre for subtle highlight */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Goudy Old Style', serif; /* Goudy Old Style with serif fallback */
    background-color: var(--bg-color);
    color: var(--primary-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    padding: 2rem;
    max-width: 600px;
}

.title {
    font-size: 8rem; /* Large and impactful */
    margin-bottom: 0.5rem;
    font-weight: normal; /* Goudy Old Style often looks best without bold */
    letter-spacing: 0.05em; /* A little breathing room */
    color: var(--primary-text-color);
}

.subtitle {
    font-size: 2rem;
    color: var(--secondary-text-color);
    font-weight: normal;
    letter-spacing: 0.02em;
}

/* Optional: Subtle hover effect for future interactivity */
.title:hover {
    color: var(--accent-color);
    transition: color 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .title {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 1.4rem;
    }
}