:root {
/*--color: #0f0;*/
--color: #000;
/*--color: #fff;*/
/*--background: #000;*/
--size: 0.9;
--font: 'JetBrains Mono';
--animation: terminal-blink;
}
body {
    background: var(--background);
    color: var(--color);
    font-family: var(--font);
    font-size: calc(var(--size) * 1rem);
    padding: 2rem;
    margin: 0 auto;
    justify-content: center;
}
/* Nav bar - horizontal line */
nav {
    display: flex;
    justify-content: center;
    max-width:100%;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--color);
    border-bottom: 1px solid var(--color);
    white-space: nowrap;  /* Keep nav items on one line */
}
nav a {
    color: var(--color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
nav a:hover {
    text-shadow: 0 0 0 var(--color);
}
/* Optional: Underline effect on hover */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color) !important;
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 100%;
}
nav a:hover {
    color: var(--color);
    text-decoration: none;
}

.quote {
    white-space: normal;
    margin: 1em 0;
    padding-left: 1em;
    border-left: 3px solid var(--color);
    font-style: italic;
    max-width: 100%;
    word-wrap: break-word;
    text-align: left;
}


.cite {
    text-align: right;
    max-width: 100%;
    font-style: italic;
    opacity: 0.8;
    margin: 0 auto;
}
.container {
    max-width: 70%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}
.section-container{
    white-space: normal;
    margin: 1em 0;
    padding-left: 1em;
    max-width: 100%;
}

.text {
    width: 100%;
    font-size: 5px;
    text-align: center;
    margin: auto;
}

.definition-list li {
    margin-bottom: 0.8em;
}

.indent {
    margin-left: 20px;
}
