html {
    height: 100vh;
}

body {
    display: grid;
    height: 100%;
    grid-template-rows: auto 0.9fr auto;
}


.main {
    font-family: "serif";
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;

}
.post-body{
    display: grid;
    * {
	max-width: inherit;
	width: 100%;
	min-width: 0;
	min-height: 0;
	overflow: auto;
    }
}
h1{
    color: darkorange;
    font-family: "serif";
    text-align: center;
}

a {
    color:darkorange;
    :visited {
	color:chocolate;
    }
}

.figure {
    p {
	text-align: center;
    }
}

p {
    word-wrap: break-word;
    hyphens: auto;
    text-align: justify;
}

h2 {
    font-family: sans-serif;
    margin-bottom: 1em;
}

img {
    object-fit: contain;
}

pre {
    overflow: auto;
    background: beige;
}

.post-container {
    display: grid-lanes;
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
    flow-tolerance: 1em;
    gap: 1em;
    .post-overview {
	padding: 3px;
	h3 {
	    font-family: sans-serif;
	    text-align: right;
	    margin-right: 1em;
	};
	p {
	    font-style: italic;
	    font-family: serif;
	}
	.date{
	    text-align: right;
	    margin-right: 1em;
	}
    }
}

.block-anchor {
    color: black;
    text-decoration: none;
    :hover {
	background: darkorange;
    }
}
.block-anchor:visited{
    color:black;
}
.hidden-anchor {
    color: black;
    text-decoration: none;
}
.hidden-anchor:visited{
    color:black;
}

.tag{
    font-weight: bold;
    text-align: right;
    color: darkorange;
}

.about{
    text-align: center;
}

.tags{
    padding-right: 1em;
    list-style: none;
}

#table-of-contents {

}

.footer {
    text-align: center;
    min-height: 2em;
    aligh-self: baseline;
    overflow-x: auto;
}

}
