@font-face {
    font-family: "Inter";
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(./fonts/inter-latin-400-normal.woff2) format("woff2"), url(./fonts/inter-latin-400-normal.woff) format("woff");
}
@font-face {
    font-family: "Inter";
    font-style: italic;
    font-display: swap;
    font-weight: 400;
    src: url(./fonts/inter-latin-400-italic.woff2) format("woff2"), url(./fonts/inter-latin-400-italic.woff) format("woff");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url(./fonts/inter-latin-700-normal.woff2) format("woff2"), url(./fonts/inter-latin-700-normal.woff) format("woff");
}
@font-face {
    font-family: "Inter";
    font-style: italic;
    font-display: swap;
    font-weight: 700;
    src: url(./fonts/inter-latin-700-italic.woff2) format("woff2"), url(./fonts/inter-latin-700-italic.woff) format("woff");
}
@font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url(./fonts/ibm-plex-mono-latin-700-normal.woff2) format("woff2"), url(./fonts/ibm-plex-mono-latin-700-normal.woff) format("woff");
}
html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}
body {
    margin: auto;
    max-width: 50rem;
}
* {
    font-family: "Inter", "SF Pro", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    box-sizing: border-box;
}
a {
    color: white;
}
h1 {
    margin-bottom: 0.5rem;
    font-family: "IBM Plex Mono", monospace;
}
p {
    margin: 0.5rem 0;
}
section p {
    margin: 1rem 0;
}
p + ul {
    margin-top: 0;
}
hr {
    width: 100%;
    margin: 1.5rem 0;
    border-bottom: 0;
}
div {
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    max-width: max-content;
    background: #5c0000;
}
*:has(h1 + small) h1 {
    margin-bottom: 0;
}
*:has(h3 + h1) h3 {
    margin-bottom: 0;
}
h3 + h1 {
    margin-top: 0;
}
h1 > a {
    font-size: min(7vw, 2.5rem);
}