html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: #000;
    background-attachment: fixed;
}

main {
    width: 900px;
    /* Your fixed width */
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
    /* The Brand Colors */
    --text-color: #00e426;
    --bg-color: #000000; /* Assuming a dark terminal vibe */

    /* The Pixel Scale (Golden Ratio approx) */
    --size-xs: 14px;
    --size-base: 24px;
    --size-md: 32px;
    --size-lg: 64px;

}

/* Global Reset */
* {
    color: var(--text-color);
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}

/* Base Body Styles */
body {
    font-size: var(--size-base);
    line-height: 22px; /* Fixed leading */
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

/* Headings with Proper Hierarchy */
h1 {
    font-size: var(--size-lg);
    line-height: 90px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

h2 {
    font-size: var(--size-md);
    line-height: 60px;
    margin-top: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: var(--size-base);
    line-height: 44px;
    margin-top: 24px;
    margin-bottom: 12px;
}

h4 {
    font-size: var(--size-base);
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraphs and Lists */
p, li {
    font-size: var(--size-base);
    line-height: 24px;
    margin-bottom: 18px;
}

/* Small text for captions/footer */
small {
    font-size: var(--size-xs);
    line-height: 16px;
}