html {
    height: 100%;
}
body {
    background-color: aliceblue;
    text-align: center;
    font-family: 'Neuton', serif;
    font-size: 24px;
    line-height: 1.5;
    color: rgb(30, 60, 90);
    height: 100%;
    display: grid;
    grid-template-rows: min-content auto min-content;
}

header {
    font-family: 'Chewy', sans-serif;
    font-size: 48px;
    padding: 25px 30px;
    color: aliceblue;
    text-align: left;
    background-color: rgb(164, 195, 196);
    line-height: 1.2;
}

header a {
    color: inherit;
    text-decoration: none;
}

section {
    height: 100%;
}

div.nav {
    font-size: 80px;
    font-weight: bolder;
    position: fixed;
    bottom: 50%;
}

div.noleft {
    left: 0px;
}

div.noright {
    right: 0px;
}

.nav a {
    text-decoration: none;
    color: inherit;
    font-family: 'Chewy';
    padding: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0.1);
}

.nav a:hover {
    text-decoration: none;
    color: inherit;
    font-family: 'Chewy';
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.25);
}

div.content {
    /* background-color: lightcoral; */
    margin: 0 auto 30px auto;
    padding: 0 10px;
    max-width: 700px;
    text-align: left;
    color: rgb(30, 60, 90);
}

.content p {
    line-height: 1.75;
}

.content p + p, .content ul + p {
    padding-top: 20px;
}

.content a {
    color: inherit;
    background-color: white;
    text-decoration-color: 
    text-decoration-thickness: 2px;
    text-decoration-style: dashed;
    text-underline-offset: 6px;
}

.content figure div {
    padding: 20px 0;
    text-align: center;
	position: relative;
    left: 50%;
	right: 50%;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
}

.content figcaption {
    padding-bottom: 20px;
}

.content ul {
    list-style-position: inside;
    list-style-type: none;
    padding-top: 20px;
}

.content li::before {
    content: '—';
    /* padding-right: 10px;
    padding-left: 10px; */
    width: 40px;
    display: inline-block;
    text-indent: 10px;
}

.content li {
    margin-left: 40px;
    text-indent: -40px;
    padding-bottom: 20px;
}

.content strong {
    font-family: 'Boogaloo', sans-serif;
}

.author-center {
    text-align: center;
}

.author-right {
    text-align: right;
}

.author-blockquote {
    /* background: #e0eaeb; */
    background-color: rgb(164, 195, 196, 0.3);
    font-style: italic;
    padding: 20px 30px;
    margin: 20px 0;
    border-radius: 15px;
}

.author-footnote, .author-small {
    font-size: 80%;
}

.author-section {
    font-family: 'Boogaloo', serif;
    font-size: 33px;
    text-indent: 25px;
}

.post_meta {
    font-family: 'Rubik', serif;
    font-size: 16px;
    display:grid;
    grid-template-columns: min-content auto;
    line-height: 1.8;
    margin-bottom: 20px;
}

.post_meta .date {
    /* width: 150px; */
    white-space: nowrap;
    margin: auto 0;
    padding-right: 0.3em;
}

a.post_chip {
    border-radius: 5px;
    text-decoration: none;
    padding: 3px;
    color: white;
    white-space: nowrap;
}

a.category {
    background: rgb(30, 60, 90);
}

a.tag {
    background-color: rgb(164, 195, 196);
}

a.postcard {
    display: inline-block;
}

div.postcard {
    background-color: white;
    border: 1.5px solid rgb(164, 195, 196);
    border-radius: 5px;
    /* box-shadow: 1px 1px rgb(164 195 196); */
    padding: 5px;
    margin: 25px;
    position: relative;
    width: 300px;
    height: 300px;
}

div.postcard_title {
    position: absolute;
    top: 5px;
    font-size: 30px;
    color: white;
    /* background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.75)); */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(60, 90, 90, 0.9));
    width: 300px;
    height: 300px;
    font-family: 'Boogaloo', serif;
    text-align: left;
    line-height: 1;
}

div.postcard_title_positioning {
    position: absolute;
    bottom: 0px;
    padding: 10px;
}

p.has-text-align-center {
    width: 100%;
    color: blue;
}

img {
    max-inline-size: 100%;
    block-size: auto;
}

.post_title {
    font-family: 'Boogaloo', serif;
    font-size: 50px;
    color: rgb(30, 60, 90);
    line-height: 1;
    padding: 30px 10px;
}

.post_title a {
    color: inherit;
    text-decoration: none;
}

em {
    font-style: italic;
}

strong {
    font-weight: bolder;
}

footer {
    padding: 25px 30px;
    color: black;
    background-color:rgb(164, 195, 196);
    line-height: 1.2;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    text-align: left;
}

footer a {
    color: inherit;
}

footer img {
    color: inherit;
    vertical-align: middle;
}
