@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Public Sans", sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

h1, h2, h3 {
    color: #222;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre, code {
    background: #eee;
    padding: 0.25rem 0.5rem;
    font-family: monospace;
    border-radius: 4px;
}

pre {
    overflow-x: auto;
    padding: 1rem;
    white-space: pre-wrap;        /* wrap long lines */
    word-break: break-word;       /* break long words */
}
ul, ol {
    padding-left: 1.5rem;
}

blockquote {
    border-left: 4px solid #ccc;
    padding-left: 1rem;
    color: #666;
    margin: 1rem 0;
}