html {
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

body {

    color: plum;
    background-color: black;
    font-family: monospace;
    font-size: 14px;

    display: flex;
    flex-direction: column;
    line-height: 1.2rem;
}

.main-container {
  margin: auto;
  width: 100%;
  padding: 5px;
}

.container {
  margin: auto;
  width: 70%;
  padding: 5px;
}

.description {
  text-align: center;
}

h1,
h2,
h3 {
  line-height: 2rem;
}

.index {
  text-align: center;
}

.posts {
  display: table;
  margin: 0 auto;
}

code {
  background: #222222;
  box-decoration-break: clone;
  padding: .2rem .2rem .2rem;
  border-radius: .2rem;
  color: lightpink;
  overflow-wrap: anywhere;
	font-size: 0.8em;
}

.banner { 
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

img {
  display: block;
  max-width: 100%;
}

.title {
  text-align: center;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
    body {
        margin-left: 10%;
        margin-right: 10%;
    }

.container {
  margin: auto;
  width: 100%;
  padding: 5px;
}

}

 .post {
   background: #0a0a0a;
   border: 1px solid #333;
   padding: 12px 15px;
   margin-bottom: 18px;
   text-align: left;
 }

 .post h3 {
   margin: 0 0 4px 0;
   font-size: 21px;
 }

 .post .date {
   font-size: 11px;
   color: #666;
   margin-bottom: 8px;
   display: block;
 }

 .post p {
   font-size: 13px;
   line-height: 1.5;
 }
 
#nav
{ text-align: left; font-size: 100%; white-space: nowrap; }

.quote:link    { color: pink; text-decoration: none; }
a:link    { color: pink; text-decoration: underline; }
a:hover   { color: lightpink; text-decoration: underline; font-weight: bold }
a:visited { color: pink; text-decoration: none; }
a:active  { color: pink; text-decoration: none; } 
