body {
    font-size: calc(0.6em + 0.6vw); font-family: serif;
    max-width: 60em; margin: 0 auto;
    color: white; background-color: rgb(28, 48, 48);
}

nav { font-size: smaller; }
nav ul { list-style-type: none; }
nav ul li { display: inline-block; }
nav ul li + li::before { content: ' - '; }

main {
    color: black; background-color:white;
    padding: 1em;
}

.date {
    text-align: right;
    color: darkgray;
}

li p:first-letter {
    font-size: unset;
}
li p {
    text-indent: unset;
}

a {
    color: inherit;
}

h1 {
    background: -webkit-linear-gradient(yellow, tomato);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* background-color: rgb(28, 48, 48); color: tomato; */
    text-align: center;
    text-transform: uppercase;
    padding: 1em;
}

.banner {
    padding: 2px;
    background-color: rgb(28, 48, 48);
    clip-path: polygon(
        0 10%,
        10% 0,
        90% 0,
        100% 10%,
        100% 90%,
        90% 100%,
        10% 100%,
        0% 90%,
        0% 10%
    );
}

.banner div {
    padding: 3px;
    background-color: white;
    clip-path: polygon(
        0 10%,
        10% 0,
        90% 0,
        100% 10%,
        100% 90%,
        90% 100%,
        10% 100%,
        0% 90%,
        0% 10%
    );
}

.banner div div {
    padding: 2px;
    background-color: rgb(28, 48, 48);
    clip-path: polygon(
        0 10%,
        10% 0,
        90% 0,
        100% 10%,
        100% 90%,
        90% 100%,
        10% 100%,
        0% 90%,
        0% 10%
    );
}

h2, h3 {
    background-color: lightgray; color: black;
    border-style: solid; border-left: none; border-right: none;
    border-color: rgb(28, 48, 48);
    font-family: sans-serif;
    padding-left: 3%;
}

h2 {
    text-transform: uppercase;
}

blockquote {
    background-color: rgb(28, 48, 48); color: white;
    padding-left: 1em; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;
    margin-left: 5%; margin-right: 5%;
    border-radius: 10px;
}
cite {
    padding-left: 10%;
    text-align: right;
    font-size: smaller;
}

figure {
    text-align: center;
    padding-left: 1em; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;
    margin-left: 5%; margin-right: 5%;
    border-radius: 10px;
}
img { 
    object-fit: fill;
    max-width: 100%;
    border-radius: 5px;
}
figcaption {
    font-size: smaller;
    font: caption;
    font-style: italic;
}

table {
    margin-left: auto; margin-right: auto; margin-top: 4px; margin-bottom: 4px;
    table-layout: fixed; border-collapse: collapse;
    border: 1px solid gray;
    padding: 8px;
}
th, td {
    border: 1px solid gray; padding: 8px; width: auto;
}
tr {
    width: 100%;
}

ol.articles {
    padding: 0%;
}
ol.articles li {
    list-style-type: none;
    padding-bottom: 10px;
}
ol.articles li p a {
    font-size: larger;
    font-weight: bold;
    text-transform: uppercase;
}

footer p:first-letter {
    font-size: unset;
}

header nav img {
    height: 2em;
    float: right;
    clear: both;
}

img.bullet {
    float: right;
    clear: both;
    max-height: fit-content;
}

:is(h2, h3, h4, h5, h6) a {
    float: right;
    clear: both;
    padding-right: 3%;
}
