/* article.css
 *  This CSS file styles an article layout with improved typography and responsive design.
 *  It includes styles for headings, paragraphs, and a container to ensure a clean and readable layout.
 */

body, html {
    margin: 0;

    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

h1, h2, h3 {
    margin-top: 0;
    color: #333;
    font-weight: 600;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.75em;
    margin-bottom: 0.5em;
}

.content {
    margin-top: 20px;
}

.content p {
    font-size: 1.1em;

    line-height: 1.7;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    h3 {
        font-size: 1.5em;
    }

    .content p {
        font-size: 1em;
    }
}
