/* Global page styling */
body {
    background-color: #f7f3e8; /* pastel cream */
    color: #4a3b2a;           /* brown text */
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container for content */
.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-weight: normal;
    margin-bottom: 0.5em;
}

p {
    line-height: 1.6;
    margin-top: 0.5em;
}
