/*
 * This is a placeholder file to be filled as I go. 
 * I cribbed 'blockquote from Baker's cromulent file, to be played with.
*/

blockquote {
    margin: 1.5rem 0;
    padding: 0 2rem;
    border-left:#ccc .25rem solid
}

/*
 * styles for body elements
*/

body {
    margin: 0 50px;
    max-width: 1200px;
}

body > header {
    display: flex;
    justify-content: left;
}

body header p {
    text-justify: right;
    padding: 3px 5px;
    font-size: 24px;
}

a {
    color: teal;
    text-decoration: none;
}

a.heading-anchor {
    color: lightgray;
    font-weight: bolder;
}

h1 {
    font-family: sans-serif;
    color: blue;
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 1px solid gray;
}

.content p {
    font-family: sans-serif;
    line-height: 1.5;
}

.entry h2,h3 {
    font-family: sans-serif;
    color: blue;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid gray;
    margin-bottom: 15px;
}

.entry h3 {
    padding-top: 10px;
    border-bottom: none;
}

img {
    float: right;
    width: 150px;
}

/*
 * styles for header nav
 */

header nav {
    font-family: sans-serif;
    font-size: 0.9em;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 2px;
}

header nav, header nav a {
    color: #999;
}

header nav a:hover {
    color: #1E76D4;
}

/*
 * styles for table of contents
 */

.toc {
    border: 1px solid lightgray;
    background-color: #f8f8f8;
    font-family: sans-serif;
    font-size: 1em;
    display: inline-block;
 }

 .toc p {
    padding: 5px 15px;
    font-weight: 600;
 }

.toc ol {
    list-style-type: none;
    font-family: sans-serif;
    padding-right: 15px;
    font-size: .85em;
    line-height: 1.3;
}

.toc ol > li {
    counter-increment: customlistcounter;
    text-align: initial;
}

.toc ol > li:before {
    content: counter(customlistcounter) " ";
    float: left;
    width: 1em;
}

/*
 * styles for infobox
*/

.infobox {
    float: right;
    border: 1px solid black;
    background-color: rgb(245, 245, 245);
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 10px;
    font-family: sans-serif;
}

#infobox-header {
    text-align: center;
    color: black;
    margin: 0;
    padding 10px;
}

#infobox-thumbnail  {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block;
}

.infobox h3 {
    border-bottom: 0;
}

#infobox-thumbnail {
    text-align: center;
}

.infobox dl {
    display: inline-grid;
    column-gap: .5em;
    row-gap: .75em;
}

.infobox dt {
    grid-column: 1;
    font-weight: bold;
}

.infobox dd {
    grid-column: 2;
}

.infobox code {
    font-size: larger;
}

/*
 * styles for footer
*/

footer {
    border-top: solid #ddd 2px;
    padding-top: 4px;
    padding-bottom: 30px;
    font-size: 0.9em;
}

footer address {
    display: inline;
    margin-left: 10px;
}

footer a {
    color: #aaa;
}

footer a:hover {
    color: #1E76D4;
}
   
.footer-text {
    float: right;
    color: #aaa;
}

/*
 * end styles for footer
*/
