/* static/css/style.css */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
    margin: 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5em;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 1.5em 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #2c5d3d; /* A green from the reference site */
}

nav a {
    margin-left: 1.5em;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a:hover {
    color: #2c5d3d;
}

main {
    padding: 3em 0;
}

article h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0.5em;
}

article {
    padding: 2em;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 2em 0;
    margin-top: 3em;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    color: #777;
}
