#page {
    padding: 5rem 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(oklab, in), color-stop(0%, rgb(18, 18, 18)), to(rgb(30, 30, 30)));
    background-image: -webkit-linear-gradient(in oklab, rgb(18, 18, 18) 0%, rgb(30, 30, 30) 100%);
    background-image: -moz-linear-gradient(in oklab, rgb(18, 18, 18) 0%, rgb(30, 30, 30) 100%);
    background-image: -o-linear-gradient(in oklab, rgb(18, 18, 18) 0%, rgb(30, 30, 30) 100%);
    background-image: linear-gradient(in oklab, rgb(18, 18, 18) 0%, rgb(30, 30, 30) 100%);
}
#page h1 {
    font-size: 2rem;
}
#page h2 {
    font-size: 1.5rem;
}
#page h3 {
    font-size: 1.25rem;
    font-weight: 800;
}
#page h4 {
    font-size: 1.2rem;
    font-weight: 900;
}
#page ul {
    margin-bottom: 1rem;
}
#page li {
    position: relative;
    padding-left: 0.75rem;
    margin-bottom: 0;
}
#page li:before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}
#page a {
    color: var(--accent-gold);
}
#page a:hover {
    color: var(--accent-gold-hover);
}