@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

html {
    /* linen */
    background-color: #f7f5f0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(150, 145, 135, 0.12) 0px, rgba(150, 145, 135, 0.12) 1px,
            transparent 1px, transparent 8px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(150, 145, 135, 0.12) 0px, rgba(150, 145, 135, 0.12) 1px,
            transparent 1px, transparent 8px
        );
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    padding: 1em;
    margin: auto;
    max-width: 44em;
    background: transparent;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    color: #111;
    font-size: 2em;
    margin-bottom: 0.25em;
}

h2 {
    border-bottom: 1px solid #e5e5e5;
    color: #111;
    font-size: 1.4em;
    padding-bottom: 0.3em;
    margin-top: 2em;
}

h3 { font-size: 1.15em; }
h4 { font-size: 1em; }
h5 { font-size: 0.9em; }

h6 {
    color: #666;
    font-size: 0.9em;
}

hr {
    height: 1px;
    border: 0;
    background-color: #e5e5e5;
    margin: 2em 0;
}

p, blockquote, ul, ol, dl, li, table, pre {
    margin: 1em 0;
}

a, a:visited {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border-radius: 4px;
}

img.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    float: right;
    margin: 0 0 1em 2em;
}

blockquote {
    border-left: 3px solid #2563eb;
    margin-left: 0;
    padding-left: 1.25em;
    color: #444;
    font-style: italic;
}

code, pre {
    font-family: 'Menlo', 'Fira Mono', monospace;
    font-size: 0.88em;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: inherit;
}

code {
    border: 1px solid #e8e8e8;
    padding: 0.1em 0.4em;
}

pre {
    border: 1px solid #e8e8e8;
    line-height: 1.5;
    overflow: auto;
    padding: 0.8em 1em;
}

pre > code {
    border: 0;
    padding: 0;
    background: none;
}
