@import url('https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+3:200,300,400,500,600,700,800,900,200i,300i,400i,500i,600i,700i,800i,900i&display=swap');

body {
    font-family:"Source Sans 3",Helvetica,sans-serif;
    color:var(--charcoal-400);
    line-height:1.15;
    font-size:16px;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}


* {
    box-sizing: border-box;
}


html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    display: block;
    height: 100%;
    position: relative;
    font-size: 16px;
}

:root {
    --charcoal-300: #6B6B6B;
    --charcoal-400: #596169;
    --charcoal-500: #454a4f;
}

.article-container {
    display: flex;
    justify-content: center;
    padding: 40px;
    padding-bottom: 120px;
}

article {
    max-width: 100%
}

header  {
    position: relative;
    padding-top: 40px;
}

header > h1  {
    margin: 8px auto;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -.02em;
    padding: 0;
    line-height: 1.4;
    text-align: left;
    text-wrap: pretty;
}

h1 {
    padding: 0;
    font-family: Inter,Helvetica,sans-serif;
    font-weight: 600;
    line-height: 1.4;
    color: var(--charcoal-500);
    letter-spacing: -.02em;
    font-size: 2.25rem;
}

li {
    margin-bottom: 4px;
}

p, li {
    line-height: 1.6;
    font-family: "Source Sans 3", Helvetica, sans-serif;
    font-size: 1.125rem;
}

header > p {
    font-family: Inter, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--charcoal-300);
    letter-spacing: -.02em;
    padding: 0;
    line-height: 1.4;
}

article img {
    margin-top: 16px;
    border-radius: 4px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

@media (min-width: 480px){
    h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px){
    article {
        max-width: 700px;
    }

    h1 {
        font-size: 3rem;
    }

    header  {
        min-height: 320px;
        margin-bottom: 80px;
        padding-top: 80px;
    }

    header > h1  {
        margin-bottom: 0;
        font-size: 2.5rem;
    }

    header > p  {
        margin-top: 12px;
        font-size: 20px;
        line-height: 2rem;
    }
}

a {
    color: #fa5560;
    text-decoration: none;
}

a:hover {
    color: #e64e58;
    text-decoration: underline;
}

.note {
    border-left: 4px solid #ddd;
    padding-left: 12px;;
    color: #aaaaaa;
}

h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

h5 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

ol li {
    padding-left: 4px;
}

pre code {
    max-height: 1200px;
}

code {
    padding: 20px;
    border-radius: 6px;
    line-height: 20px;
    border: 1px solid rgb(229 229 229);
    background: rgb(249 249 249) !important;
}

code.code-inline {
    background: rgba(0, 0, 0, .05);
    padding: 2px 4px;
    margin: 0 2px;
    font-family: source-code-pro, Menlo, Monaco, "Courier New", Courier, monospace;
    font-size: 16px;
    color: var(--charcoal-400);
    border-radius: 4px;
}