.show-loading-animation.rect-shape, .show-loading-animation.round-shape, .show-loading-animation.text-row,
.show-loading-animation .rect-shape,
.show-loading-animation .round-shape,
.show-loading-animation .text-row {
  -webkit-animation: react-placeholder-pulse 1.5s infinite;
          animation: react-placeholder-pulse 1.5s infinite; }

@-webkit-keyframes react-placeholder-pulse {
  0% {
    opacity: .6; }
  50% {
    opacity: 1; }
  100% {
    opacity: .6; } }

@keyframes react-placeholder-pulse {
  0% {
    opacity: .6; }
  50% {
    opacity: 1; }
  100% {
    opacity: .6; } }

/* https://colorpalettes.net/color-palette-4102/ */
:root {
  --cape-cod: #394545;
  --gray-chateau: #aab1b3;
  --ebb: #e9e5e3;
  --muddy-waters: #c09e72;
  --paarl: #9e6228;
  --nile-blue: #1a535c;
  --puerto-rico: #4ecdc4;
  --sugar-cane: #f7fff7;
  --bittersweet: #ff6b6b;
  --kournikova: #ffe66d;
}
:root {
  --dark-bg: var(--nile-blue);
  --dark-color: var(--sugar-cane);

  --light-bg: var(--sugar-cane);
  --light-color: var(--cape-cod);
}
html,
body {
  background-color: var(--light-bg);
  color: var(--light-color);
}
@media (prefers-color-scheme: dark) {
  /* CSS Code wenn Dark Mode aktiv */
  html,
  body {
    background-color: var(--dark-bg);
    color: var(--dark-color);
  }
}
:root {
  --color-dark-headings: var(--kournikova);
  --color-light-headings: var(--nile-blue);
}
@font-face {
  font-family: 'Bowlby One SC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bowlby-one-sc-v12-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/bowlby-one-sc-v12-latin-regular.eot?#iefix')
      format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/bowlby-one-sc-v12-latin-regular.woff2')
      format('woff2'),
    /* Super Modern Browsers */
      url('../fonts/bowlby-one-sc-v12-latin-regular.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/bowlby-one-sc-v12-latin-regular.ttf')
      format('truetype'),
    /* Safari, Android, iOS */
      url('../fonts/bowlby-one-sc-v12-latin-regular.svg#BowlbyOneSC')
      format('svg'); /* Legacy iOS */
}
body {
  font-size: 120%;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bowlby One SC', cursive;
  color: var(--color-light-headings);
  font-weight: 400;
  font-variant-caps: small-caps;
  letter-spacing: 1px;
}
@media (prefers-color-scheme: dark) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--color-dark-headings);
  }
}
:root {
  --color-light-link: var(--cape-cod);
  --background-light-link: var(--kournikova);
  --color-dark-link: var(--sugar-cane);
  --background-dark-link: var(--paarl);
}
a {
  display: inline;
}
a,
a:visited {
  text-decoration: none;
  color: var(--color-light-link);
  box-shadow: inset 0 -4px 0 var(--background-light-link);
  transition: background 0.1s ease-in-out;
}
a:hover,
a:active {
  background-color: var(--background-light-link);
}
@media (prefers-color-scheme: dark) {
  a,
  a:visited {
    color: var(--color-dark-link);
    box-shadow: inset 0 -4px 0 var(--background-dark-link);
  }

  a:hover,
  a:active {
    background-color: var(--background-dark-link);
  }
}
.link--devto {
  flex: 0 1 auto;
  display: inline-block;
  background-color: none;
  box-shadow: none;
  border-bottom: 1px solid var(--background-dark-link);
}
@media (prefers-color-scheme: dark) {
  .link--devto {
    border-bottom-color: var(--background-light-link);
  }
}
.link--devto img {
  width: 30px;
  vertical-align: middle;
}
:root {
  --color-light-tag: var(--cape-cod);
  --background-light-tag: var(--kournikova);
  --color-dark-tag: var(--sugar-cane);
  --background-dark-tag: var(--paarl);
}
.list {
  list-style-type: lower-roman;
}
.list--big {
  font-size: 1.3rem;
}
.list--small {
  font-size: 0.9rem;
}
.list__item {
  margin-bottom: 1rem;
}
.list__item--update::before {
  content: 'Update';
  background-color: var(--background-light-tag);
  color: var(--color-light-tag);
  margin-right: 10px;
  padding: 2px 3px;
  font-size: 0.7em;
  border-radius: 5px;
}
.list__item::after {
  content: attr(data-date);
  padding: 1px;
  font-size: 0.7em;
  margin-left: 10px;
}
.list__item__title {
}
.list__item__description {
  display: none;
}
/* Grid Layout Switch */
@media (min-width: 1200px) {
  .list--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    grid-gap: 2.5rem;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
  }

  /* Card style */
  .list--grid .list__item {
    padding: 10px;
    background-color: var(--background-light);
    color: var(--color-light);
    margin: 0;
  }

  /* Let the latest 2 blogposts be bigger in size */
  .list--grid .list__item:first-child {
    grid-column: 1 / span 2;
  }

  .list--grid .list__item:first-child + .list__item {
    grid-column: 3 / span 2;
  }

  .list--grid .list__item::after {
    display: block;
    margin-left: 0;
  }

  .list--grid .list__item__description {
    display: block;
    margin-top: 5px;
    font-size: 0.8em;
  }

  .list--grid .list__item__description p {
    margin: 0;
  }
}
@media (prefers-color-scheme: dark) {
  .list__item--update::before {
    background-color: var(--background-dark-tag);
    color: var(--color-dark-tag);
  }
}
:root {
  --color-dark-card-bg: var(--sugar-cane);
  --color-dark-card: var(--cape-cod);

  --color-light-card: var(--sugar-cane);
  --color-light-card-bg: var(--cape-cod);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 400px));
  grid-gap: 2rem;
}
.card {
  background-color: var(--color-light-card-bg);
  color: var(--color-light-card);
  padding: 2rem;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
/*
 Inerhit colors for links from the card context.
*/
.card a {
  color: currentColor;
  background-color: inherit;
}
@media (prefers-color-scheme: dark) {
  .card {
    color: var(--color-dark-card);
    background-color: var(--color-dark-card-bg);
  }
}
/* Source: https://codepen.io/sdthornton/pen/wBZdXq */
.card--type-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card--type-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card--type-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.card--type-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.card--type-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card--type-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
:root {
  --header-dark-bg: var(--dark-color);
  --header-dark-color: var(--dark-bg);

  --header-light-bg: var(--light-color);
  --header-light-color: var(--light-bg);

  --header-triangle-height: max(4vh, 2vw);
}
header {
  margin-bottom: 100px;
}
.masthead.masthead {
  display: inline-block;
}
/* We have to overwrite some of the heading default stylings*/
.masthead h1 {
  font-family: monospace;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: normal;
  font-variant-caps: normal;
}
@media (min-aspect-ratio: 11/10) and (min-height: 400px) {
  /* Page is wider than it is tall */
  .triangle {
    background-image: url('../../img/ava.min.png');
    background-repeat: no-repeat;
    background-position: bottom right;
  }
}
@media (min-width: 300px) {
  .masthead.masthead {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    min-height: 150px;
    height: calc(50vh - var(--header-triangle-height));
  }

  .triangle {
    position: relative;
    color: var(--header-light-color);
    background-color: var(--header-light-bg);
    /* */
    background-size: min(calc(50% - var(--header-triangle-height)), 200px);
    margin-bottom: var(--header-triangle-height);
  }

  .triangle h1 {
    color: currentColor;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .triangle a:not(:hover):not(:active) {
    color: currentColor;
  }

  .triangle::before {
    content: '';
    position: absolute;
    bottom: 1px; /* avoid spacing offset quirks, so have 1px overlap */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--header-triangle-height) var(--header-triangle-height) 0
      var(--header-triangle-height);
    border-color: var(--header-light-bg) transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
  }
}
@media (prefers-color-scheme: dark) {
  .triangle {
    color: var(--header-dark-color);
    background-color: var(--header-dark-bg);
  }

  .triangle::before {
    border-top-color: var(--header-dark-bg);
  }
}
.header {
  position: relative;
}
.header__meta {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  padding: 10px;
  justify-content: space-between;
}
@media (min-width: 1100px) {
  .header__meta {
    display: flex;
    min-width: 33vw;
  }
}
.post {
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
.post__header {
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
@media (min-width: 800px) {
  .post__header {
    flex-direction: row;
    align-items: center;
  }
}
.post__header__actions {
  display: flex;
  flex-direction: row;
}
/* PrismJS 1.22.0
https://prismjs.com/download.html#themes=prism-coy&languages=markup+css+clike+javascript+javadoclike+jsdoc+jsx+typescript */
/**
 * prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
 * @author Tim  Shedor
 */
code[class*='language-'],
pre[class*='language-'] {
  color: black;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;

  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;

  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
/* Code blocks */
pre[class*='language-'] {
  position: relative;
  margin: 0.5em 0;
  overflow: visible;
  padding: 0;
}
pre[class*='language-'] > code {
  position: relative;
  border-left: 10px solid #358ccb;
  box-shadow: -1px 0px 0px 0px #358ccb, 0px 0px 0px 1px #dfdfdf;
  background-color: #fdfdfd;
  background-image: linear-gradient(
    transparent 50%,
    rgba(69, 142, 209, 0.04) 50%
  );
  background-size: 3em 3em;
  background-origin: content-box;
  background-attachment: local;
}
code[class*='language-'] {
  max-height: inherit;
  height: inherit;
  padding: 0 1em;
  display: block;
  overflow: auto;
}
/* Margin bottom to accommodate shadow */
:not(pre) > code[class*='language-'],
pre[class*='language-'] {
  background-color: #fdfdfd;
  box-sizing: border-box;
  margin-bottom: 1em;
}
/* Inline code */
:not(pre) > code[class*='language-'] {
  position: relative;
  padding: 0.2em;
  border-radius: 0.3em;
  color: #c92c2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline;
  white-space: normal;
}
pre[class*='language-']:before,
pre[class*='language-']:after {
  content: '';
  z-index: -2;
  display: block;
  position: absolute;
  bottom: 0.75em;
  left: 0.18em;
  width: 40%;
  height: 20%;
  max-height: 13em;
  box-shadow: 0px 13px 8px #979797;
  transform: rotate(-2deg);
}
pre[class*='language-']:after {
  right: 0.75em;
  left: auto;
  transform: rotate(2deg);
}
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #7d8b99;
}
.token.punctuation {
  color: #5f6364;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.function-name,
.token.constant,
.token.symbol,
.token.deleted {
  color: #c92c2c;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.function,
.token.builtin,
.token.inserted {
  color: #2f9c0a;
}
.token.operator,
.token.entity,
.token.url,
.token.variable {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
  color: #1990b8;
}
.token.regex,
.token.important {
  color: #e90;
}
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.important {
  font-weight: normal;
}
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
.token.namespace {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  pre[class*='language-']:before,
  pre[class*='language-']:after {
    bottom: 14px;
    box-shadow: none;
  }
}
/* Plugin styles: Line Numbers */
pre[class*='language-'].line-numbers.line-numbers {
  padding-left: 0;
}
pre[class*='language-'].line-numbers.line-numbers code {
  padding-left: 3.8em;
}
pre[class*='language-'].line-numbers.line-numbers .line-numbers-rows {
  left: 0;
}
/* Plugin styles: Line Highlight */
pre[class*='language-'][data-line] {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
pre[data-line] code {
  position: relative;
  padding-left: 4em;
}
pre .line-highlight {
  margin-top: 0;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
.flex-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .flex-wrapper {
    flex-direction: row;
    align-items: space-between;
  }
}
main {
  margin-left: 8px;
  margin-right: 8px;
}
aside:empty {
  display: none;
}
@media (min-width: 800px) {
  main {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 75%;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  aside {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 25%;
  }
}
img {
  width: auto;
  max-width: 100%;
}
@-webkit-keyframes typing {
  from {
    width: 0;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: transparent;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* https://codepen.io/harmputman/pen/IpAnb */
.blockquote--landing {
  position: relative;
  display: block;
  border-width: 2px 0;
  border-style: solid;
  border-color: #eee;
  padding: 1.5em 0 0.5em;
  margin: 0 auto;
  max-width: 85vw;
}
blockquote.blockquote--landing:after {
  content: '\2013 \2003'attr(cite);
  display: block;
  text-align: right;
  font-size: 0.875em;
  color: #e74c3c;
}
@media (min-width: 800px) {
  .blockquote--landing {
    max-width: 60vw;
  }
}
