@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Mono&display=swap);
html,
body {
  background-color: #bfbdbe;
  font-family: "IBM Plex Mono", monospace;
}

a {
  color: #08bc17;
  font-weight: bold;
}
a:hover {
  color: #08bc17;
}
a.footnote {
  text-decoration: none;
}
a.reversefootnote {
  text-decoration: none;
}

.spacer {
  flex-grow: 1;
}

.card {
  background-color: #e5e4e4;
  padding: 16px;
  margin: 16px;
}
.card:last-of-type {
  margin-bottom: 16px;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) and (min-width: 640px) {
  body {
    height: auto;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) and (orientation: landscape) {
  body {
    height: auto;
  }
}

nav,
footer {
  flex-shrink: 0;
  min-height: 48px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
}

main {
  flex-grow: 1;
  overflow: auto;
}

footer {
  margin-top: auto;
}

#left {
  display: none;
  visibility: hidden;
}

@media screen and (min-width: 960px) {
  .container {
    flex-wrap: nowrap;
  }
  aside {
    flex-shrink: 0;
    height: calc(100vh - 96px - 64px);
    max-width: 272px;
  }
}
@media screen and (min-width: 1296px) {
  #left {
    display: block;
    flex-grow: 1;
    visibility: visible;
  }
  main div.card {
    width: 960px;
  }
}
nav {
  align-items: center;
  background-color: #2e2f37;
  display: flex;
  padding: 0px 12px;
}
nav a {
  color: #bfbdbe;
  display: block;
  flex-grow: 0;
  font-weight: bold;
  padding: 14px 16px;
  text-align: left;
  text-decoration: none;
}
nav a:hover {
  background-color: #bfbdbe;
  color: #2e2f37;
}
nav a.current {
  color: #4df75b;
}
nav a:hover.current {
  background-color: #bfbdbe;
  color: #05730e;
}
nav .logo {
  margin-top: -1px;
  padding: 0px 16px;
}
nav .logo span {
  display: none;
}
@media screen and (min-width: 640px) {
  nav .logo span {
    display: inline;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 46px;
    padding-left: 16px;
    vertical-align: top;
  }
}
nav .logo #site-logo {
  filter: invert(80%) sepia(22%) saturate(16%) hue-rotate(229deg) brightness(94%) contrast(85%);
  margin-top: 4px;
}
nav .logo:hover #site-logo {
  filter: invert(15%) sepia(20%) saturate(411%) hue-rotate(196deg) brightness(89%) contrast(88%);
}
@media screen and (max-width: 1023px) {
  nav .menuToggle {
    display: block;
    position: relative;
    z-index: 1;
    /*
     * Transform all the slices of hamburger
     * into a crossmark.
     */
    /*
     * And let's slide it in from the left
     */
  }
  nav .menuToggle input {
    cursor: pointer;
    display: block;
    height: 32px;
    left: -5px;
    opacity: 0;
    position: absolute;
    top: -7px;
    width: 40px;
    z-index: 2;
  }
  nav .menuToggle span {
    background: #bfbdbe;
    border-radius: 3px;
    display: block;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    width: 33px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  nav .menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  nav .menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  nav .menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #bfbdbe;
  }
  nav .menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  nav .menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  nav .menuToggle input:checked ~ .menu {
    transform: none;
    visibility: visible;
  }
  nav .menuToggle .menu {
    background: #2e2f37;
    height: 100%;
    left: 0px;
    list-style-type: none;
    margin: 0;
    padding: 50px;
    padding-top: 125px;
    position: fixed;
    top: 0px;
    visibility: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  nav .menuToggle .menu a {
    font-size: 22px;
    padding: 10px 0;
  }
}
@media screen and (min-width: 1024px) {
  nav .menuToggle input {
    display: none;
    visibility: hidden;
  }
  nav .menuToggle .menu {
    display: flex;
  }
  nav .menuToggle .menu .home {
    display: none;
    visibility: hidden;
  }
}

aside {
  display: none;
  visibility: hidden;
}
aside.home {
  display: block;
  visibility: visible;
}
aside .tagline {
  text-align: center;
}
aside .avatar {
  display: none;
}
aside .summary {
  text-align: justify;
}
aside .social {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-bottom: 32px;
}
aside .social a {
  background-repeat: no-repeat;
  background-size: cover;
  height: 32px;
  width: 32px;
}
aside .social .bitbucket {
  background-image: url("../images/bitbucket.svg");
}
aside .social .bitbucket-black {
  background-image: url("../images/bitbucket-b.svg");
}
aside .social .github {
  background-image: url("../images/github.svg");
}
aside .social .gitlab {
  background-image: url("../images/gitlab.svg");
}
aside .social .gitlab-black {
  background-image: url("../images/gitlab-b.svg");
}
aside .social .linkedin {
  background-image: url("../images/linkedin.svg");
}
aside .social .linkedin-black {
  background-image: url("../images/linkedin-b.svg");
}
aside .social .email {
  background-image: url("../images/mail.svg");
}
aside .social .twitter {
  background-image: url("../images/twitter.svg");
}
aside .social .twitter-black {
  background-image: url("../images/twitter-b.svg");
}
@media screen and (min-width: 960px) {
  aside {
    display: block;
    visibility: visible;
  }
  aside .avatar {
    clip-path: circle(70px at center);
    display: block;
    margin-left: unset;
    margin-right: unset;
    order: 2;
    padding: 32px;
  }
}

footer {
  align-items: center;
  background-color: #2e2f37;
  color: #4df75b;
  display: flex;
  font-weight: bold;
  justify-content: center;
}
footer img {
  height: 32px;
  padding: 4px 0px;
  width: 32px;
}
footer img:last-of-type {
  padding-right: 8px;
}
footer a {
  text-decoration: none;
}

.post .metadata {
  color: #08bc17;
  text-align: right;
}
.post .post-navigation {
  display: flex;
  padding-top: 32px;
}

.talks h4 {
  margin-block-end: 1em;
  margin-block-start: 3em;
}
.talks h4:first-of-type {
  margin-block-start: 1.33em;
}

.highlight pre {
  padding: 2em;
}
.highlight code {
  color: #bbbbbb;
}

.highlight pre {
  background-color: #272822;
}

.highlight .hll {
  background-color: #272822;
}

.highlight .c {
  color: #75715e;
} /* Comment */
.highlight .err {
  color: #960050;
  background-color: #1e0010;
} /* Error */
.highlight .k {
  color: #66d9ef;
} /* Keyword */
.highlight .l {
  color: #ae81ff;
} /* Literal */
.highlight .n {
  color: #f8f8f2;
} /* Name */
.highlight .o {
  color: #f92672;
} /* Operator */
.highlight .p {
  color: #f8f8f2;
} /* Punctuation */
.highlight .cm {
  color: #75715e;
} /* Comment.Multiline */
.highlight .cp {
  color: #75715e;
} /* Comment.Preproc */
.highlight .c1 {
  color: #75715e;
} /* Comment.Single */
.highlight .cs {
  color: #75715e;
} /* Comment.Special */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gs {
  font-weight: bold;
} /* Generic.Strong */
.highlight .kc {
  color: #66d9ef;
} /* Keyword.Constant */
.highlight .kd {
  color: #66d9ef;
} /* Keyword.Declaration */
.highlight .kn {
  color: #f92672;
} /* Keyword.Namespace */
.highlight .kp {
  color: #66d9ef;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #66d9ef;
} /* Keyword.Reserved */
.highlight .kt {
  color: #66d9ef;
} /* Keyword.Type */
.highlight .ld {
  color: #e6db74;
} /* Literal.Date */
.highlight .m {
  color: #ae81ff;
} /* Literal.Number */
.highlight .s {
  color: #e6db74;
} /* Literal.String */
.highlight .na {
  color: #a6e22e;
} /* Name.Attribute */
.highlight .nb {
  color: #f8f8f2;
} /* Name.Builtin */
.highlight .nc {
  color: #a6e22e;
} /* Name.Class */
.highlight .no {
  color: #66d9ef;
} /* Name.Constant */
.highlight .nd {
  color: #a6e22e;
} /* Name.Decorator */
.highlight .ni {
  color: #f8f8f2;
} /* Name.Entity */
.highlight .ne {
  color: #a6e22e;
} /* Name.Exception */
.highlight .nf {
  color: #a6e22e;
} /* Name.Function */
.highlight .nl {
  color: #f8f8f2;
} /* Name.Label */
.highlight .nn {
  color: #f8f8f2;
} /* Name.Namespace */
.highlight .nx {
  color: #a6e22e;
} /* Name.Other */
.highlight .py {
  color: #f8f8f2;
} /* Name.Property */
.highlight .nt {
  color: #f92672;
} /* Name.Tag */
.highlight .nv {
  color: #f8f8f2;
} /* Name.Variable */
.highlight .ow {
  color: #f92672;
} /* Operator.Word */
.highlight .w {
  color: #f8f8f2;
} /* Text.Whitespace */
.highlight .mf {
  color: #ae81ff;
} /* Literal.Number.Float */
.highlight .mh {
  color: #ae81ff;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #ae81ff;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #ae81ff;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #e6db74;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #e6db74;
} /* Literal.String.Char */
.highlight .sd {
  color: #e6db74;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #e6db74;
} /* Literal.String.Double */
.highlight .se {
  color: #ae81ff;
} /* Literal.String.Escape */
.highlight .sh {
  color: #e6db74;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #e6db74;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #e6db74;
} /* Literal.String.Other */
.highlight .sr {
  color: #e6db74;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #e6db74;
} /* Literal.String.Single */
.highlight .ss {
  color: #e6db74;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #f8f8f2;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #f8f8f2;
} /* Name.Variable.Class */
.highlight .vg {
  color: #f8f8f2;
} /* Name.Variable.Global */
.highlight .vi {
  color: #f8f8f2;
} /* Name.Variable.Instance */
.highlight .il {
  color: #ae81ff;
} /* Literal.Number.Integer.Long */
/* Generic Heading & Diff Header */
.highlight .gu {
  color: #75715e;
} /* Generic.Subheading & Diff Unified/Comment? */
.highlight .gd {
  color: #f92672;
} /* Generic.Deleted & Diff Deleted */
.highlight .gi {
  color: #a6e22e;
} /* Generic.Inserted & Diff Inserted */

/*# sourceMappingURL=main.css.map */