@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Serif&display=swap');
:root {
    --width: 720px;
    --font-main: "IBM Plex Serif", serif;
    --font-secondary: "Geist", Verdana, sans-serif;
    --font-scale: 1em;
        --background-color: #636363;
        --heading-color: #eee;
        --text-color: #ddd;
        --link-color: white;
        --visited-color:  grey;
        --code-background-color: #000;
        --code-color: #ddd;
        --blockquote-color: #ccc;
}

html {
  	background-color:#003401;
  	background-image:url("./background.png");
  	background-size: 20%;
}
body {
    font-family: var(--font-secondary);
    font-size: var(--font-scale);
    margin: auto;
    padding: 20px;
    max-width: var(--width);
    text-align: left;
  	word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    color: var(--text-color);
  	background-size: cover;
  	background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    color: var(--heading-color);
  	text-align:left;
  	font-weight:normal;
}

a {
    color: var(--link-color);
    cursor: pointer;
    text-decoration: underline;
	text-shadow: 2px 2px 4px #000000;
}

a:hover {
    font-weight:bold!important;
}

nav a {
    margin-right: 8px;
}

strong, b {
    color: var(--heading-color);
}

button {
    margin: 0;
    cursor: pointer;
}

time {
 	font-family: monospace;
  	font-style: normal;
  	font-size: 15px;
}

main {
    line-height: 1.6;
    border: 1px solid white;
  	outline: 8px solid black;
  	background-color:black;
  	padding:14px;
  	padding-right:15px;
  	text-align:justify;

}

table {
    width: 100%;
}

hr {
    border: 0;
    border-top: 1px dashed;
}

img {
    max-width: 100%;
}

code {
    font-family: monospace;
    padding: 2px;
    background-color: var(--code-background-color);
    color: var(--code-color);
    border-radius: 3px;
}

blockquote {
    border-left: 1px solid #999;
    color: var(--blockquote-color);
    padding-left: 20px;
    font-style: italic;
}

footer {
    padding: 25px 0;
    text-align: center;
}
footer span {
	display:none;
}

.title:hover {
    text-decoration: none;
}

.title h1 {
    font-size: 1.5em;
  display:none;

}

.inline {
    width: auto !important;
}

.highlight, .code {
    padding: 1px 15px;
    background-color: var(--code-background-color);
    color: var(--code-color);
    border-radius: 3px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    overflow-x: auto;
}

/* blog post list */
ul.blog-posts {
    list-style-type: none;
    padding: unset;
}

ul.blog-posts li {
    display: flex;
}

ul.blog-posts li span {
    flex: 0 0 130px;
}

ul.blog-posts li a:visited {
    color: var(--visited-color);
}
main h1 {
	margin-top:5px;
}
.home main {
padding-left:30px;
  padding-bottom:10px;
}

.logo {
margin-bottom:10px;
}

.index p {
margin:5px;
margin-bottom:1px;
}
.index img {
	display:block;
	margin:auto;
	margin-right:2px;
	max-width:250px;

}
.index h2 {
	font-style:italic;
	color:grey;
}

.buttons {
background-color:darkgreen;
padding:4px;
padding-right:10px;
text-align:right;
border-radius:10px;
}

