:root {
    --background: #000000;
    --foreground: #ffffff;
    --accent: #39bc47;
    --radius: 0;
    --font-size: 1rem;
    /* --line-height: 1.54em; */
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Fira Code", Monaco, Consolas, "Ubuntu Mono", monospace;
    font-size: var(--font-size);
    font-weight: 400;
    line-height: var(--line-height);
    letter-spacing: -0.01em;
    background-color: var(--background);
    color: var(--foreground);
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga", "tnum", "ss01", "locl";
    font-variant-ligatures: contextual;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
}

h1 {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: calc(var(--font-size) * 0.2);
}

h1,
h2 {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: calc(var(--font-size) * 1.1);
    letter-spacing: 0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: calc(var(--line-height) * 1.2) 0;
}

a {
    color: var(--accent);
}

/* Bold elements */
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
    font-weight: 600;
}
