@font-face {
     font-family: "karma_future";
     src: url(/fonts/karma_future-webfont.woff2);
     }
@font-face {
     font-family: "karma_suture";
     src: url(/fonts/karma_suture-webfont.woff2);
    }
@font-face {
     font-family: "artisan12";
     src: url(/fonts/artisan12-webfont.woff2);
    }
    
@font-face {
     font-family: "marginy";
     src: url(/fonts/marginy/marigny-bold-webfont.woff2);
    }

:root {
    --main-bg-color: #D2FF58;
    --main-fg-color: #000;
    --main-highlight-color: #DE4993;
    --main-header-color: #000;
    --main-link-color: #3B3D75;
    --hover-link-color: #000;
    --active-link-color: #000;
    --nested-ul-color: #000;
}

html {
    scrollbar-color: var(--main-fg-color) var(--main-bg-color);
}

body {
    background-color: var(--main-bg-color);
    color: var(--main-fg-color);
    font-family: 'Verdana', 'sans-serif';
    font-size: 11pt;
}

nav,
main,
footer {
    background-color: white;
    border: 3px solid var(--main-fg-color);
    border-radius: 1rem;
    line-height: 1.1rem;
}

nav {
    background-image: url('/../imgs/decor/jaguarwhite.png');
    background-size: 200px;
    font-family: karma_suture;
    text-decoration: none;
}

nav ol {
    font-weight: bold;
    font-size: 14pt;
}

#pagination {
    background-image: none;
}

main {
    border-top: none;
    border-bottom: none;
}

nav, main {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

footer, main, #pagination {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#pagination {
    border-bottom: none;
}

blockquote {
    margin-left: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--main-highlight-color);
}

code {
    background-color: var(--main-highlight-color);
    padding: 0.1rem;
    color: var(--main-fg-color);
}

pre:has(code) {
    background-color: var(--main-highlight-color);
}

.lastupdate::after {
    content: " ⍟ ";
}

h1,h2,h3,h4,h5,h6 {
    color: var(--main-header-color);
    margin-bottom: 0;
    line-height: 1;
    margin-top: 0;
}

h1 {
  font-family: marginy;
  font-size: 38pt;
}

h2 {
  font-family: karma_future;
  font-size: 22pt;
}

h3 {
  font-family: karma_future;
  font-size: 22pt;
}
h4 {
  font-family: karma_suture;
  font-size: 18pt;
}
h5 {
  font-family: karma_suture;
  font-size: 14pt;
}
h6 {
  font-family: marginy;
  font-size: 15pt;
}

tagged {
    text-decoration: none;
}

a {
    color: var(--main-link-color);
}

a:hover,
a:focus {
    color:var(--hover-link-color);
}

a:active {
    color: var(--active-link-color);
}

ul li ul,
ol li ul {
    list-style-type: "★";
}

ul li ul li::marker,
ol li ul li::marker {
    color: var(--nested-ul-color);
}

#latest_posts {
    font-size: 11pt;
}
.tagList {
    font-size: 11pt; !important
}

hr {
    color: var(--main-header-color);
  border: none; !important
  margin: 1rem;
  height: auto;
  color: black;
  text-align: center;
  &:after {
    content: "❤";
    font-size: 1em;
    text-shadow:
      -6em 0,
      -4em 0,
      -2em 0,
       2em 0,
       4em 0;
       6em 0,
  }
}

.break {
  border: 3px solid black;
  &:after {
    none
  }
}

.commentbox, #c_widget,
#disqus_thread {
    border-left: 3px solid var(--main-fg-color);
    border-right: 3px solid var(--main-fg-color);
    border-top: 3px solid var(--main-fg-color);
    background-color: white;
}