/**
 * [Webflow] /blog Inside <head> tag
 */

pre, code:not([class*="language-"]) {
  font-family: Monaco, monospace;
  padding: 0.1em 0.25em;
  background-image: linear-gradient(
    -45deg,
    rgba(240, 3, 69, 0.2),
    rgba(30, 80, 218, 0.2)
  );
  border-radius: 0.25rem;
}

code:not([class*="language-"]) {
  font-size: 0.8em;
  vertical-align: bottom;
  border: 1px solid #a778;
  color: #a77f;
  background-image: linear-gradient(
    -45deg,
    rgba(240, 3, 69, 0.1),
    rgba(30, 80, 218, 0.1)
  );
  
}

pre[class*="language-"] {
  color: #fee;
  font-size: 0.85em;
}

pre[class*="language-"] {
  color: #ea62b3;
  text-shadow: none;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;

  background-color: #18171b;
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  background-image: linear-gradient(
    -45deg,
    rgba(240, 3, 69, 0.2),
    rgba(30, 80, 218, 0.2)
  );
}
code[class*="language-"] {
  color: inherit;
}

@media print {
  pre[class*="language-"],
  code[class*="language-"] {
    text-shadow: none;
  }
}

:not(pre) > code[class*="language-"] {
  padding: 0.1em 0.3em;
  border-radius: 0.3em;
  color: #ea62b3;
  background: #f9f2f4;
}
/*********************************************************
* Tokens
*/
.namespace {
  opacity: 0.7;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: rgba(255, 255, 255, 0.7);
}
.token.punctuation {
  color: #999999;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #0fb5d0;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: rgb(49, 186, 162);
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #0fb5d0;
  background: transparent;
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #7748d1;
}
.token.function {
  color: #ffde52;
}
.token.regex,
.token.important,
.token.variable {
  color: #ee9900;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}

/* Tables */
.markdown table {
  border: 1px solid red;
  border-collapse: collapse;
  margin: auto;
}

.markdown th, td {
  border: 1px solid lightgray;
  padding: 0.5em;
}

.markdown tr:nth-child(even) {
  background: #00000008;
}
