*
{
  margin: 0;
  padding: 0;
}

div#buzztext
{
  max-width: 12em;
  margin: 1em auto;
  color: white;
  text-align : center;
  font-size: 3em;
  text-shadow: 0 0 0.1em rgb(189, 189, 189);
}

p#description
{
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.2em;
  position: absolute;
  left: 50%;
  width: 30em;
  margin-left: -15em;
  text-align: center;
}

div#mainwrap
{
  max-width: 50em;
  min-height: 30em;
  background-color: rgba(0, 0, 0, 0.48);
  margin: 0 auto;
  box-shadow: 0 0 1em rgba(173, 173, 173, 0.08);
  border-radius: 0 0 1em 1em;
  padding-top: 1em;
}

body
{
  background-color: #141D20;
}

li.menu
{
  display: inline;
}

a.menu
{
  transition: background 0.3s;
  text-decoration: none;
  padding: 0.5em;
  color: white;
}

a.menu:hover
{
  background-color: rgba(255, 255, 255, 0.21);
}

nav.menu
{
  padding: 0.5em;
  background-color: rgba(162, 162, 162, 0.29);
  box-shadow: 0 0 0.4em black;
}

ul.posts li
{
  list-style: outside none none;
  background-color: rgba(255, 255, 255, 0.82);
  margin: 0.3em;
  border-radius: 0.2em;
  padding: 0.6em;
}

ul.posts li:nth-child(odd)
{
  background-color: rgba(255, 255, 255, 0.88);
}

a.post-link
{
  text-decoration: none;
  color: rgb(47, 77, 87);
}

a.post-link:visited
{
  color: #19292F;
}

/* Post styles */
/* ----------------------------------------------------------*/

article
{
  color: white;
}

.post
{
  max-width: 50em;
  margin: 0px auto 1em;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 1em;
  border-radius: 0 0 1em 1em;
}

.post img
{
  width: 30em;
  border-radius: 1em;
  margin: 0 auto;
  display: block;
  background-color: #272727;
}

@media screen and (max-width: 32em)
{
  .post img {
    width: 93.75%;
  }
}

.calcbox
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 32em;
  margin: 1em auto !important;
  padding: 1em;
  background-color: #ededed;
  border-radius: 1em;
  color: black;
}

.calcbox p
{
  margin: 0.3em 0;
}

.calcbox input
{
  text-align: right;
  width: 5em;
  border: none;
  padding: 0.2em;
  border-radius: 0.2em;
  background-color: rgba(255, 255, 255, 0.57);
}

.calcbox img
{
  background: none;
  flex-grow: 0.5;
  flex-basis: 12em
}

.calcbox div
{
  flex-grow: 1;
}

.post a
{
  text-decoration: none;
  color: #A4E6E6;
}

a:hover
{
  text-decoration: underline;
}

.post a:visited
{
  color: #C0F2F2;
}

.post-header {
  padding: 10px 0 30px;
}


.post-header h1 {
  width: 100%;
  text-align: center;
  font-size: 2em;
  color: white;
  text-shadow: 0px 0px 0.5em black;
  font-weight: 300;
}

.post-header .meta {
  width: 100%;
  text-align: center;
  font-size: 15px;
  color: #818181;
  margin-top: 5px;
}

.post-content { margin: 0 0 30px; }

.post-content > * { margin: 20px 0; }


.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  line-height: 1;
  font-weight: 300;
  margin: 40px 0 20px;
}

.post-content h2 {
  font-size: 32px;
  letter-spacing: -1.25px;
}

.post-content h3 {
  font-size: 26px;
  letter-spacing: -1px;
}

.post-content h4 {
  font-size: 20px;
  letter-spacing: -1px;
}

.post-content blockquote {
  border-left: 4px solid #e8e8e8;
  padding-left: 20px;
  font-size: 18px;
  opacity: .6;
  letter-spacing: -1px;
  font-style: italic;
  margin: 30px 0;
}

.post-content ul,
.post-content ol { padding-left: 20px; }

.post pre,
.post code {
  border: 1px solid rgba(213, 213, 233, 0.5);
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 15px;
}

.post code { padding: 1px 5px; }

.post ul,
.post ol { margin-left: 1.35em; }

.post pre code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/* terminal */
.post pre.terminal {
  border: 1px solid #000;
  background-color: #333;
  color: #FFF;
  border-radius: 3px;
}

.post pre.terminal code { background-color: #333; }

/* Syntax highlighting styles */
/* ----------------------------------------------------------*/

.highlight  { background: rgba(255, 255, 255, 0.07); }
.highlight .c { color: #999988; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { font-weight: bold } /* Keyword */
.highlight .o { font-weight: bold } /* Operator */
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #999999 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { font-weight: bold } /* Keyword.Constant */
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #009999 } /* Literal.Number */
.highlight .s { color: #d14 } /* Literal.String */
.highlight .na { color: #008080 } /* Name.Attribute */
.highlight .nb { color: #0086B3 } /* Name.Builtin */
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
.highlight .no { color: #008080 } /* Name.Constant */
.highlight .ni { color: #800080 } /* Name.Entity */
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
.highlight .nn { color: #555555 } /* Name.Namespace */
.highlight .nt { color: #000080 } /* Name.Tag */
.highlight .nv { color: #008080 } /* Name.Variable */
.highlight .ow { font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mf { color: #009999 } /* Literal.Number.Float */
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
.highlight .sc { color: #d14 } /* Literal.String.Char */
.highlight .sd { color: #d14 } /* Literal.String.Doc */
.highlight .s2 { color: #d14 } /* Literal.String.Double */
.highlight .se { color: #d14 } /* Literal.String.Escape */
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
.highlight .si { color: #d14 } /* Literal.String.Interpol */
.highlight .sx { color: #d14 } /* Literal.String.Other */
.highlight .sr { color: #009926 } /* Literal.String.Regex */
.highlight .s1 { color: #d14 } /* Literal.String.Single */
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #008080 } /* Name.Variable.Class */
.highlight .vg { color: #008080 } /* Name.Variable.Global */
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */


