/* A clean, minimalist stylesheet for text-focused content */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.7;
    font-size: 1.1rem;
    color: #222;
    background-color: #fdfdfd;
    max-width: 800px; /* Centered content column */
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Remove styling from images if any are left */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}