/* main.css - black & white, readable */

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: white;
    color: black;
}

/* Tab navigation */
div[style*="border-bottom"] {
    text-align: center;
}

button {
    font-family: inherit;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
}

button:hover {
    text-decoration: underline;
}

/* Content containers */
#homeContent, #blogContent {
    margin-top: 2rem;
}

/* Headings */
h1, h2, h3 {
    line-height: 1.2;
}

/* Links */
a {
    color: black;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Improve readability */
p, li {
    margin-bottom: 1rem;
}
