@font-face {
    font-family: 'DeliusSwashCaps';
    src: url(/Delius_Swash_Caps/DeliusSwashCaps-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'GoogleSansCode';
  src: url('/Google_Sans_Code/GoogleSansCode-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GoogleSansCode';
  src: url('/Google_Sans_Code/GoogleSansCode-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'UnifrakturMaguntia';
  src: url('/Unifraktur_Maguntia/UnifrakturMaguntia-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
    font-family: 'MedievalSharp';
    src: url('/Medieval_Sharp/MedievalSharp-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'DeliusSwashCaps', Arial, sans-serif;
    text-align: center;
    background-color: #010101;
    color: white;
    box-sizing: border-box;
}

body * {
}

section.footnotes {
    text-align: left;
}

header, footer {
    justify-self: center;
}

main {
    display: grid;
    grid-template-columns: 40rem 20fr;
    gap: 1rem;
    justify-self: center;
}

@media (max-width: 900px) {
    main {
        grid-template-columns: 1fr;
    }
}

article {
    grid-column: auto;
}

aside {
    grid-column: auto;
    text-align: center;
    width: 20rem;
    justify-self: center;
}

nav {
    margin: 1rem;
}

ul, ol {
    text-align: left;
}

pre {
    background-color: #222222;
    padding: 1rem;
    text-align: left;
}

q, blockquote {
    font-family: 'MedievalSharp', cursive;
    font-size: 1.25rem;
}

code {
    font-family: 'GoogleSansCode', monospace;
    border-radius: 4px;
}

a {
    color: #ADD8E6;
}

a:visited {
    color: #558888;
}

.red {
    color: #FF5555;
}

.under {
    text-decoration: underline;
}
