/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Maher Zubair
 */

 :root {
    --bg-color:#151f2d;
    --second-bg-color:#22282f;
    --main-color:#775ae2;
    --other-color:#ffffff;
    --h1-font:4.5rem;
    --h2-font:2.9rem;
    --p-font:1rem;
    --apple-font: Poppins, sans-serif
    }

 code[class*="language-"],
 pre[class*="language-"] {
     color: #0ed7ff;
     background: none;
     font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
     font-size: 18px;
     white-space: pre;
     word-spacing: normal;
     word-break: normal;
     word-wrap: normal;
     line-height: 1.3;
 
     -moz-tab-size: 4;
     -o-tab-size: 4;
     tab-size: 4;
 
     -webkit-hyphens: none;
     -moz-hyphens: none;
     -ms-hyphens: none;
     hyphens: none;
 }
 
 pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
 code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
     text-shadow: none;
     background: #b3d4fc;
 }
 
 pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
 code[class*="language-"]::selection, code[class*="language-"] ::selection {
     text-shadow: none;
     background: #0d59b5;
 }
 
 @media print {
     code[class*="language-"],
     pre[class*="language-"] {
         text-shadow: none;
     }
 }
 
 /* Code blocks */
 pre[class*="language-"] {

overflow: auto;

}
 pre[class*="language-"]::-webkit-scrollbar {
    height: 13px;
  }
 pre[class*="language-"]::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
 pre[class*="language-"]::-webkit-scrollbar-thumb {
    background: #324767;
  }
 pre[class*="language-"]l::-webkit-scrollbar-thumb:hover {
    background: #324767; 
  }
 
 :not(pre) > code[class*="language-"],
 pre[class*="language-"] {
     background: var(--bg-color);
 }
 
 /* Inline code */
 :not(pre) > code[class*="language-"] {
     padding: .1em;
     border-radius: .3em;
     white-space: normal;
 }
 
 .token.comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
     color: #4cc95d;
     font-weight: normal;
 }
 
 .token.punctuation {
     color: #ef50f3;
     font-weight: normal
 }
 
 .token.namespace {
     opacity: .7;
 }

.token.parameter,
.token.interpolation {
 font-weight: normal;
color:#94e7ff;
}

 .token.property,
 .token.tag,
 .token.boolean,
 .token.number,
 .token.constant,
 .token.symbol,
 .token.deleted {
     color: #ee61af;
     font-weight: normal
 }
 
 .token.selector,
 .token.attr-name,
 .token.string,
 .token.char,
 .token.builtin,
 .token.inserted {
     color: #ff6f00;
     font-weight: normal;
 }
 
 .token.operator,
 .token.entity,
 .token.url,
 .language-css .token.string,
 .style .token.string {
     color: var(--other-color);
     font-weight: normal;
 }
 
 .token.atrule,
 .token.attr-value,
 .token.keyword {
     color: #0090ff;
     font-weight: normal;
 }
 
 .token.function,
 .token.class-name {
     color: #ff6786;
          font-weight: normal;
 }
 
 .token.regex,
 .token.important,
 .token.variable {
     color: #e90;
     
 }
 
 .token.important,
 .token.bold {
     font-weight: normal;
 }
 .token.italic {
     font-style: italic;
 }
 
 .token.entity {
     cursor: help;
 }
 