:root {
    --bg: #1e2326;
    --fg: #d3c6aa;
    --link: #7fbbb3;
    --visited: #d699b6;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-size: 24px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width:1500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.page {
    border-style: solid;
    border-width: 1px;
    border-color: var(--fg);
    margin: 1em auto;
    padding: 3em;

    width: 22em;
    min-height: 22em;
}

.semipage {
    border-style: solid;
    border-width: 1px;
    border-color: var(--fg);
    margin: 1em auto;
    padding: 3em;

}

@media (max-width: 800px) {
    .page {
        padding: 1em;
    }
}

:target {
    color: var(--link);
}

dd {
    display: list-item;
    list-style-type: square;
}

dl {
    max-width: 500px;
}

h1 {
    text-align: center;
}

a:link {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

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

h3 {
    margin: 0;
}

ul li {
  margin-left: 38px;
}


/* ul.dashed {
list-style-type: none;
}
ul.dashed > li {
text-indent: -8px;
}
ul.dashed > li:before {
content: "- ";
text-indent: -5px;
} */