﻿:root {
    --light-gray: rgb(156 163 175);
    --black: rgb(0 0 0);
    --gray: rgb(67, 74, 85);
    --indigo: rgb(79 70 229);
    --purple: rgb(55 48 163);
    --light-purple: rgba(178, 175, 250, 0.56);
    --primary: rgb(12, 16, 27);
    --light: rgb(230, 231, 235);
    --white: rgb(255 255 255);
    --code: rgb(245, 245, 245);
}

* {
    box-sizing: border-box;
    border: 0 solid var(--light);
}

body {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: var(--primary);
    margin: 0;
    line-height: 1.5;
}

::selection {
    color: var(--white);
    background-color: var(--light-purple);
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: var(--indigo);
    text-decoration: inherit;
}

a:hover {
    color: var(--purple);
}

a:visited {
    color: var(--purple);
}

ul {
    list-style-type: "— ";
}

.bg-white {
    background-color: var(--white);
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.w-full {
    width: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray {
    border-color: var(--light-gray);
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pt-4 {
    padding-top: 1rem;
}

.text-black {
    color: var(--black);
}

.text-gray {
    color: var(--gray);
}

.text-indigo {
    color: var(--indigo);
}

.text-purple {
    color: var(--purple);
}

.leading-relaxed {
    line-height: 1.625;
}

.pl-5 {
    padding-left: 1.25rem;
}

.before\:absolute:before {
    position: absolute;
}

.before\:-ml-5:before {
    margin-left: -1.25rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-baseline {
    align-items: baseline;
}

.gap-1 {
    gap: 0.25rem;
}

.min-w-0 {
    min-width: 0;
}

.relative {
    position: relative;
}

.note-content {
    margin-bottom: 1rem;
}

.note-content h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.note-content h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.note-content h3 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.note-content h4,
.note-content h5,
.note-content h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.note-content strong {
    font-weight: 700;
    color: var(--black);
}

.note-content ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.note-content li {
    margin-bottom: 0.5rem;
}

.note-content pre {
    background-color: var(--code);
    padding: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    border-radius: 0.25rem;
}

.note-content code {
    background-color: var(--code);
    padding: 0.125rem 0.25rem;
    font-size: 0.875rem;
}

.note-content pre code {
    background-color: transparent;
    padding: 0;
    font-size: 0.875rem;
}

.note-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.note-content > * + * {
    margin-top: 1rem;
}

.stream-entries article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}