:root {
    --max-p-length: 70ch;
}

hr {
    width: var(--max-p-length);
}

nav {
    width: var(--max-p-length);
}

body {
    line-height: 1.5;
}

section {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: var(--max-p-length);
    margin-left: auto;
    margin-right: auto;
}


article {
    justify-content: center;
    align-items: center;
    text-align: center;
}

article p {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

section a, small, h1 {
    color: var(--text-color);
}

section a:visited {
    color: var(--text-color); 
}

section b {
    font-size: 1.15rem;
}

section p {
    font-size: 1.15rem;
}

h1 {
    font-weight: 500;
    font-size: 1.5rem;
}

a > b {
    font-weight: 500;
    font-size: 1.5rem;
}

pre {
    color: var(--code-color);
    background-color: var(--code-bg-color);
    border-radius: 5px;
    overflow-x: auto;
    padding: 1rem;
    text-align: left;
    font-family: monospace;
    box-sizing: border-box;
}