@font-face {
    font-family: "Poetsen";
    src: url("poetsen-one.ttf")
}
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    color: #000;
    background: linear-gradient(135deg, #e5eaf2, #f6eeed);
}
body > svg {
    display: none;
}
#home {
    text-align: center;
}
.brand {
    font-family: "Poetsen", system-ui, sans-serif;
}
.accent {
    color: #e38b27;
}
.logo {
    font-size: 2rem;
}
a {
    color: #666;
    font-weight: 700;
    text-decoration: none;
}
main a {
    color: #e38b27;
}
a:hover {
    color: #e38b27;
    text-decoration: underline;
}
nav {
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); 
    padding: .5rem 1rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    position: sticky; 
    top: 0; 
    z-index: 1000;
    font-weight: 700;
}
nav a {
    color: black;
}
header {
    padding-top: 2rem;
    padding-bottom: 1rem;
}
main {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
h1 {
    font-size: 3.5rem;
}
h2 {
    font-size: 2.5rem;
}
header p {
    font-size: 2rem;
}
section p, ul, li {
    font-size: 1.5rem;
    line-height: 2rem;
}
p {
    margin: 1rem auto;
}
pre[class*="language-"] {
    display: inline-block;      /* allow centering */
    text-align: left;           /* keep code left-aligned inside */
    border-radius: 10px;
    overflow-x: auto;
    box-sizing: border-box;
    max-width: 100%;
}
pre[class*="language-"] code {
    font-size: .9rem;
}
.screenshot {
    max-width: 100%;
    height: auto;
}
.cta {
    display: inline-flex;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: .5rem;
    text-decoration: none;
    align-items: center;
    font-weight: 700;
    font-size: 1.7rem;
    background: #ddd;
    color: #515d71;
    margin: 0 .5rem;
}
.cta .icon {
    height: 2rem;
    width: 2rem;
    vertical-align: middle;
}
.cta:hover {
    background: #ddd;
}
svg {
    fill: currentColor;
}
.mobile {
    display: none;
}
pre[class*="language-"] {
	box-shadow: -1px 0 0 0 #e38b27, 0 0 0 1px #dfdfdf !important;
	border-left: 10px solid #e38b27 !important;
}
.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
    color: #e38b27 !important;
}
footer {
    text-align: center;
    font-size: 1rem;
    color: #666;
    padding-top: 2rem;
    padding-bottom: 1rem;
}
footer p {
    margin: 1rem auto;
}
footer svg {
    width: 1.5rem;
    height: 1.5rem;
}
#copyright {
    margin-top: 1.2rem;
}
.trademarks {
    font-size: .8rem;
    line-height: 1.2rem;
    color: #999;
    margin-top: 1rem;
    padding: 0 1rem;
}

/* Blog */

article {
    text-align: left;
    font-size: 2rem;
}

#blog-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#blog-posts h3 {
    margin-bottom: .3rem;
}

#blog-posts h4 {
    font-weight: normal;
    margin: 0;
    color: #666;
}

#blog-posts.all li {
    margin-bottom: 1rem;
}

#blog-posts.related {
    margin: 3rem 0 1rem;
}

.post {
    margin-bottom: 1rem;
}

.post-date, .post-tags {
    color: #666;
}

.post-date {
}

.post-body p {
    overflow-x: auto;
    overflow-y: hidden;
}
