* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  font-family: monospace;
}

#profile, #layout {
  padding: 1em 1em 3em 1em;
}

#profile {
  margin: 0 auto;
  margin-top: 3em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  align-items: start;
}

#profile div {
  max-width: 400px;
}

#profile h1 {
  margin-top: 0;
}

#profile img {
  border-radius: 5px;
}

#main li {
  margin-bottom: 0.1em;
}

#layout div {
  max-width: 600px;
  display: block;
}

#layout {
  background: #2f3e46;
  margin-top: 1em;
  border: 2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}

#posts-list {
  list-style: none;
  margin: 0;
}

#posts-list li {
  margin: 0;
}

body {
  background: #2f3e46;
  color: #cad2c5;
  padding: 1rem;
  font-size: 14.5px;
}

a {
  color: #84a98c;
}

a:hover {
  color: #52796f;
}

.post__render {
  max-width: 720px;
  margin: 4em auto;
  padding: 0 1em;
}

main {
  line-height: 1.3;
  margin: 0 auto;
}

.artcle h1, .article h2, .article h3,
.article h4, .article h5, .article h6 {
  color: #86da20;
}

.post__content h1, .post__content h3,
.post__content h4, .post__content h5, .post__content h6 {
  font-family: monospace;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
  font-style: italic;
  font-weight: bold;
}

.post__content h2 {
  font-family: monospace;
  margin-bottom: 1em;
  margin-top: 1em;
  font-style: italic;
  font-weight: bold;
  text-align: center;
}

.link__favorite { color: #e6d057 }

.post__content p code {
  padding: 0.13em 0.3em;
  border-radius: 6px;
  background-color: #444;
  font-family: monospace;
}

.post__content > p {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.post__content ul {
  list-style: square;
  margin-left: 2em;
  margin-top: 1em;
}

.post__content li {
  margin-bottom: 0.8em;
}

.post__content img {
  border-radius: 5px;
}

#featured-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

#featured-image img {
  margin-bottom: 1em;
  max-width: 100%;
}

.post__content blockquote {
  font-style: italic;
  padding: 1em;
  border-left: 7px solid #151515;
  background-color: #1a1a1a;
  text-indent: 1em;
  margin: 1.0em 0 1.5em 0;
}

.post__content blockquote p + p {
  margin-top: 1em;
}

.post__content pre {
  padding: 1em;
  border: 1px solid black;
  overflow-x: scroll;
  background: #131313;
  color: #dddddd;
  font-size: 0.8rem;
}

.post__content figure {
  text-align: center;
}

.post__content img {
  max-width: 100%;
}

.post__content tr.even, .post__content tr.header {
  background-color: #1a1a1a;
}

.post__content table {
  border: 1px solid white;
}

.post__content pre code { display: block; }
.post__content code span { font-family: monospace; }

#wrapper {
    margin-top: 10px;
    width: 500px;
    overflow: hidden;
}
#div1 {
    width: 150px;
    float:left;
}
#div2 {
    margin-left: 10px;
    width: 150px;
    float: left;
}
#div3 {
    margin-left: 10px;
    width: 150px;
    float: left;
}

.single__line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 300px;
}

.posts__ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 150px;
}

.navigation {
max-width: 720px;
display: flex;
justify-content: space-between;
}

.left, .right{
display: flex;
    flex-direction: column;
    align-items:flex-start;
}


.dv, .bn, .fl { color: #d3869b }
.co { color: #928374; font-style: italic }
.kw, .cf { color: #fb4934 } 
.dt { color: #fb4934 }
.st { color: #b8bb26 }
