html {overflow-y: scroll}
:root { 
    --bgcolor: white; 
    --fontcolor: #444; 
    --linkcolor: #00e; 
    --visitedcolor: #551a8b; 
    --precolor: #fff; 
    --prebgcolor: #000;
}

@media (prefers-color-scheme: dark) { 
    :root { 
        --bgcolor: rgb(18, 12, 12); 
        --fontcolor: rgb(195, 195, 195); 
        --linkcolor: #5bf; 
        --visitedcolor: #ae5ee0; 
        --precolor: #fff; 
        --prebgcolor: #39dca8;
    }
}

.header-title,
.header-title:link,
.header-title:visited,
.header-title:hover,
.header-title:active {
    font-size: 64px; /* Large font size for the title */
    color: #e6e6e6; 
    font-family: 'Fester', sans-serif;
    font-style: italic; 
    text-decoration: none; /* Removes underline from the link */
    padding: 10px 0px 10px 0px; /* Some padding for visual appeal */
    text-align: right;
    display: block;
    /* Add more styles as needed */
}

@media (prefers-color-scheme: dark) {
    .header-title,
    .header-title:link,
    .header-title:visited,
    .header-title:hover,
    .header-title:active {
        color: rgb(35, 35, 35); /* Color changes to white in dark mode */
    }
}

.summary-title,
.summary-title:link,
.summary-title:visited,
.summary-title:hover,
.summary-title:active {
    font-size: 24px; 
    font-family: 'Didot Title', sans-serif;
    font-weight: normal;
    text-decoration: none;
    padding: 10px 0px 10px 0px;
    display: block;
    text-align: right;
}

@media (prefers-color-scheme: dark) {
    .summary-title,
    .summary-title:link,
    .summary-title:visited,
    .summary-title:hover,
    .summary-title:active {
        color: rgb(35, 35, 35); /* Color changes to white in dark mode */
    }
}

.summary-date {
    font-size: 18px; 
    font-family: 'Didot Title', sans-serif;
    font-weight: normal;
    text-align: right;
    display: block;
}

.single-title {
    font-size: 56px;
    font-family: 'Didot Title', sans-serif;
    text-decoration: none; 
    padding: 10px 0px 10px 0px; 
    display: block;
    font-weight: normal;
    text-align: right;
}

.single-date {
    font-size: 24px; 
    font-family: 'Didot Title', sans-serif;
    font-weight: normal;
    text-align: right;
    display: block;
}

.aria-container {
    display: flex;              
    flex-direction: row;        
    align-items: flex-start; 
}

.aria-character {
    width: 200px;               /* Sets a specific width for the boxes, adjust as needed */
    font-style: italic;         /* Makes text italic */
    font-size: small;
    font-weight: bold;
    color: #888;
}

.aria-box-en, .aria-box-de {
    margin: 10px;  /* Optional: Adds space around each quote box */
    width: 300px;        /* Sets a specific width for the boxes, adjust as needed */
    font-style: italic;  /* Makes text italic */
    font-size: small;
    color: #888;
}

body{
    max-width:780px;
    margin:40px auto;
    padding:0 10px;
    display: flex;
    flex-direction: column;
    font:17px/1.6 monospace;
    font-family: 'Century', serif;
    color:var(--fontcolor); 
    background: var(--bgcolor)
}

.footer-content {
    margin-top: auto; /* Pushes the footer to the bottom */
    text-align: center; /* Center aligns the content */
    display: flex;
    justify-content: center; /* Flexbox centering horizontally */
    align-items: center; /* Flexbox centering vertically */
    padding: 10px; /* Adjust as needed */
}

a:link{color: var(--linkcolor)}
a:visited{color: var(--visitedcolor)}
a:active{color: var(--visitedcolor)}h1,h2,h3{line-height:1.2}

p > code{
    color: var(--precolor); 
    background: var(--prebgcolor); 
    padding:2px
}

code{color: var(--preolor); background: var(--prebgcolor); padding:2px}
pre{
    color: var(--precolor); 
    background: var(--prebgcolor); 
    padding:24px; 
    overflow-x: auto
}
article{padding:24px 0}
.center {display: block;margin-left: auto;margin-right: auto;width: 100%;}
figcaption {color: #888; font: 12px/1.5 monospace; text-align: center;}
figure {margin: auto}
img {display: block; max-width: 100%; height: auto; margin: auto}
