@font-face {
    font-family: 'EB Garamond';
    src: url(/assets/fonts/EBGaramond-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'EB Garamond';
    src: url(/assets/fonts/EBGaramond-Italic.woff2);
    font-style: italic;
}

@font-face {
    font-family: 'EB Garamond';
    src: url(/assets/fonts/EBGaramond-Bold.woff2);
    font-weight: 700;
}

@font-face {
    font-family: 'EB Garamond';
    src: url(/assets/fonts/EBGaramond-BoldItalic.woff2);
    font-style: italic;
    font-weight: 700;
}
:root {
    --bg-color: #e2e0d7;
    --body-color: #000010;
    --accent-color: #190971;
    --link-color: #0a5482;
    --visited-color: #27363f;
    --hover-color: #056eaf;
}
body {

    background-color: var(--bg-color);

    color: var(--body-color);
    font-family: 'EB Garamond';
    font-size: 14pt;

}

h1,h2,h3,h4 {
    color: var(--accent-color);
}

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

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

a:hover {
    color: var(--hover-color);
}

.bigtitle h1 {
    font-size: 8rem;
    margin: 0;
    line-height: 6rem;
}

.bigtitle img {
    max-width: 100%;
}

.content-container {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.cite-list {
    padding-left: 2rem;
}

.cite-list li {
    list-style: none;
    margin-bottom: 2rem;
}

.cite-list h3 {
    margin: 0;
}

.cite-list p {
    margin-top: 0;
}

.cite-list .author {
    font-style: italic;
}

footer ul {
    display: flex;
    list-style: none;
    padding: 1rem;
}

footer ul li {
    padding: 0rem 1rem;
}