<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Font Family */
@import url(https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css);
  
:root {
  /* Background Colors */
  --background: #0b1021;
  --background-darken: #060913;
  --background-lighten: #141b33;

  /* Secondary Colors */
  --primary: #00af87;
  --primary-darken: #092935;
  --primary-lighten: #00ffe1;

  /* Tertiary Colors */
  --accent: #4f14ad;
  --accent-darken: #092935;
  --accent-lighten: #9660ec;

  /* Action Colors */
  --info: #35c9fa;
  --success: #88ff88;
  --warning: #ece715;
  --danger: #f80363;

  /* Greyscale */
  --bright-white: #ffffff;
  --white: #d8d8d8;
  --pale-grey: #dcdcdc;
  --mid-grey: #a9a9a9;
  --dark-grey: #3a3939;
  --black: #292929;
  --pitch-black: #000000;
}


/* Theme Colors */
:root {
  --body-text-color: #d8d8d8;
  --link-color: #00af87;
  --border: 1px solid #092935;
  --color-default: #060913;
  --color-primary: var(--primary);
  --color-primary-opacity-8: #092935;
  --color-neutral: #0b1021;
  --color-neutral-darker: #092935;
  --color-contrast: #092935;
  --color-contrast-opacity-8: hsla(0,0%,100%,0.08);
  --color-contrast-opacity-16: hsla(0,0%,100%,0.16);
  --color-contrast-opacity-36: hsla(0,0%,100%,0.36);
  --color-contrast-opacity-86: hsla(0,0%,100%,0.86);
  --post-code-background-color: #141b33;
  --post-code-border-color: #092935;
  --page-menu-link-color: #00CCB4;
  --website-color: #00CCB4;
  --twitter-color: #00CCB4;
  --link-color: #00CCB4;
  --footer-border-top-color: #092935;
}


/* html/ body layout */
html {
  overflow-x: hidden;
}
body {
  font-family: 'Hack', Consolas, courier, monospace;
  max-width: none;
}
div#main-container {
  padding: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Post Content */
.single-post-show {
  padding: 0;
  background: none;
}
.single-post-show .post-content {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0.5rem;
  border: 3px solid #141b33;
  background: #0b1021;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

/* Page header - Remove excess padding */
.page-header__container {
  padding-top: 0.5rem;
  background: none;
}
.page-header__container.page-header__container--post {
  margin-bottom: 1rem;
  border-bottom: 2px solid #00CCB4;
}
.page-header__container #page-header {
  padding: 0.5rem 0;
}

.page-header__container .header-author-info {
  display: none;
}

.page-header__container .listed-logo-link {
  display: none;
}

.author-name__container:before {
  content: "";
}


/* Box Styling for page links, in top-right nav-bar */
div.pages-menu a.page-link {
  padding: 0.4rem;
  border: 1px solid var(--page-menu-link-color);
  margin: 0.2rem;
  text-decoration: none;
}
div.pages-menu a.page-link:hover {
  background: var(--page-menu-link-color);
  color: var(--background-color) !important;
}

/* Text Highlight Color */
::selection {
  color: #0d0e20;
  background: #12cdd7;
}

/* Horizontal Rule */
div.post-body hr {
  height: 0;
  padding: 0;
  margin: 1.5rem 0;
  border-bottom: 1px dashed #12cdd757 !important;
}
hr::before {
  content: none;
}

/* Home Page Post Links */
#author-posts {
  padding-top: 1.5rem;
}
.author-post {
  margin: 0.5rem auto;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 3px 6px 1px rgb(0 0 0 / 70%), -2px -2px 7px rgb(0 0 0 / 50%);
}
.author-post:hover {
  box-shadow: 0 2px 6px #00af87, -2px -2px 12px #060913;
  cursor: pointer;
}

#author-posts .post-title {
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 500;
  font-family: 'Hack', Consolas, courier, monospace;
}
#content-container {
  margin: 0 auto;
}

/* Home Page - Show More Button */
#author-profile .older {
  padding: 1.6rem 0;
}

/* View All Posts */
#author-all .author-post {
  border: 1px solid #092935;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
  background: #0b1021;
}
.post-preview .read-more-link {
  justify-content: end;
}

/* Footer */
#footer .footer__container {
  margin: 0;
  padding: 0.5rem 5rem;
  border-top: 1px dashed #092935;
}

#footer .footer__container .p3:first-child,
#footer .footer__container .p3:last-child {
  opacity: 0.5;
}
  
/* Font Styles for Headers and Titles */
.header-author-info, #page-header, h1, h2, h3, h4 {
	font-family: 'Hack';
  	margin-bottom: 0;
}

/* Leave a bit of space between sections */
h3, h4 {
	margin-top: 1rem;
}

/* Body Text Styles */
p, ul {
	line-height: 1.5;
  	margin: 0.25rem 0 1rem 0;
}
ul {
  list-style: square;
}

ul &gt; li &gt; ul {
  list-style: circle;
}


/* Styles Code Blocks */
div.highlight {
  background: none;
}
pre.highlight {
  box-shadow: 3px 3px 4px #000000bf inset;
  border-radius: 0.25rem;
  padding: 1rem !important;
}
pre.highlight code {
  font-weight: 900;
  font-family: "Cascadia Mono", monospace;
}

/* Inline Code Snippets */

p code.prettyprint, li code.prettyprint {
  padding: 2px 4px 4px;
  border-radius: 4px;
  box-shadow: 1px 2px 2px #00000099;
  background-color: var(--post-code-background-color, #141b33);
  border: 1px solid var(--post-code-border-color, #053f38);
}
</pre></body></html>