/* Global */
body {
  animation:colorPulse 5s infinite ease-in-out;
  /* background-image:radial-gradient(#444, #111); */
  background: #001;
  /* box-shadow:0 0 5vmin 1vmin #000 inset; */
  box-sizing:border-box;
  font-family:'Fira Mono', monospace;
  font-size:20px;
  /* height:100vh;
  overflow:hidden;
  padding:10vmin; */
  /* font-family: 'Lato', sans-serif; */
  color: rgba(0,0,0,.8);
}
/* body::before {
  animation:wave 10s infinite ease-in-out;
  content:"";
  height:20vh;
  left:0;
  opacity:.5;
  position:absolute;
  right:0;
  z-index:1;
} */
/* body:after {
  background-image:linear-gradient(transparent, transparent 3px, #222);
  background-size:4px 4px;
  bottom:0;
  content:"";
  left:0;
  pointer-events:none;
  position:absolute;
  right:0;
  top:0;
  z-index:2;
} */

p:last-child:after {
  animation:blink 1s infinite;
  content:"_";
}

h1, h2 {
  margin: 0;
}
a {
  color: #9b4242;
  text-decoration: none;
}
/* helpers */
.clearfix:after {
  content:"";
  display:block;
  clear:both;
}
/* Fonts */
.droid {
  font-family: 'Fira Mono', serif;
}
/* Components */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
  .container {
    max-width: 570px;
  }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
  .container {
    max-width: 740px;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
  .container {
    max-width: 1500px;
  }
}

.inner-container {
  width: 100%;
  height: 99%;
  overflow: auto;
  margin: 0 auto;
}
.header {
  padding: 20px 20px 0 20px;
  margin-bottom: 30px;
}
.footer {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0 20px; 
}
.copyright {
  float: right;
}
.site-title {
  margin-bottom: 20px;
  text-align: center;
}
.site-title a {
  color: #090;
}
.site-title__tag {
  float: right;
  color: #aaa;
  font-size: 14px;
  margin-top: 10px;
}
.card {
  margin-bottom: 40px;
  /* background: #fff; */
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid #090;
  border-radius: 3px;
}
.card-padding {
  padding: 20px;
}
.no-link {
  cursor: default;
}
/* Blog page */
.blog__title {
  margin-bottom: 20px;
  font-size: 40px;
}
.blog__title--small {
  font-size: 29px;
}
.blog__title a {
  color: #090;
}
.blog__teaser,
.blog__content {
  margin-bottom: 30px;
  --x-height-multiplier: 0.35;
  --baseline-multiplier: 0.179;
  letter-spacing: .01rem;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1.58;
  letter-spacing: -.003em;
}
.blog__author {
  margin-bottom: 20px;
}
.blog__author-title {
  position: relative;
  top: 7px;
  float: left;
  color: #666;
}
.blog__author-image {
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  margin-right: 10px;
}
.blog__tags {
  margin-bottom: 20px;
}
.tag-pill {
  border: none;
  color: rgba(0,0,0,.6);
  background: rgba(0,0,0,.05);
  margin-right: 10px;
  padding: 8px 10px 10px 10px;
  font-size: 13px;
}
.blog-post-hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
}
.blog-post-hero--short {
  height: 250px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  margin-bottom: 0;
  display: block;
}
/* Author page */
.author-page-title {
  margin-bottom: 15px;
}
.source-code-message {
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  background-color: #fff;
}
.source-code-message .underline {
  text-decoration: underline;
}

pre {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  color: #a79494;
  background-color: #100f0f;
  overflow-x: auto;
  padding: 15px;
  border-radius: 10px;
}
/* pre:hover, pre:focus { width: min-content; } */

/**** KEYFRAMES *****/
@keyframes colorPulse {
  0%, 100% {
    color:#0c0;
  }
  48%, 52% {
    color:#090;
  }
  50% {
    color:#060;
  }
}

@keyframes wave {
  0% {
    box-shadow:0 -10vh 20vh #0c0;
    top:-100vh;
  }
  48%, 52% {
    box-shadow:0 -10vh 20vh #090;
  }
  50% {
    box-shadow:0 -10vh 20vh #060;
  }
  100% {
    box-shadow:0 -10vh 20vh #0c0;
    top:200vh;
  }
}

@keyframes blink {
  50% {
    opacity:0;
  }
}

strong em {
  color: #a79494;
  background-color: #100f0f;
  overflow-x: auto;
  padding: 5px 5px;
  border-radius: 10px;
  font-style: initial;
}