/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 "Montserrat", sans-serif;
  color: #111;
  background-color: #fdfdfd;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #7458a2;
  text-decoration: none;
  /*&:visited {
    color: darken($brand-color, 15%);
  }*/
}
a:hover {
  color: #111;
  text-decoration: underline;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting

pre,
code {
  @include relative-font-size(0.9375);
  border: 1px solid $grey-color-light;
  border-radius: 3px;
  background-color: #f6f8fa;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;

  > code {
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
 */
/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(1200px - (30px * 2));
  max-width: calc(1200px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(1200px - (30px));
    max-width: calc(1200px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.footer-col-wrapper:after, .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #828282;
  padding-right: 5px;
  vertical-align: text-top;
}

.social-media-list li + li {
  padding-top: 5px;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: rgb(62.9, 62.9, 62.9);
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
}
table tr:nth-child(even) {
  background-color: rgb(247.3, 247.3, 247.3);
}
table th {
  background-color: rgb(239.65, 239.65, 239.65);
  border: 1px solid rgb(221.8, 221.8, 221.8);
  border-bottom-color: rgb(201.4, 201.4, 201.4);
}
table td {
  border: 1px solid #e8e8e8;
}

/**
 * Site header
 */
.site-header {
  border-top: 5px solid rgb(66.25, 66.25, 66.25);
  border-bottom: 1px solid #e8e8e8;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
.site-title, .site-title:visited {
  color: rgb(66.25, 66.25, 66.25);
}

.site-nav {
  float: right;
  line-height: 54px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: #111;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #fdfdfd;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: rgb(66.25, 66.25, 66.25);
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .page-link {
    margin-left: 20px;
  }
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 15px;
  color: #828282;
  margin-left: -15px;
}

.footer-col {
  float: left;
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1 {
  width: -webkit-calc(35% - (30px / 2));
  width: calc(35% - 30px / 2);
}

.footer-col-2 {
  width: -webkit-calc(20% - (30px / 2));
  width: calc(20% - 30px / 2);
}

.footer-col-3 {
  width: -webkit-calc(45% - (30px / 2));
  width: calc(45% - 30px / 2);
}

@media screen and (max-width: 800px) {
  .footer-col-1,
  .footer-col-2 {
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - 30px / 2);
  }
  .footer-col-3 {
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
@media screen and (max-width: 600px) {
  .footer-col {
    float: none;
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1 0 auto;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-link {
  display: block;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title,
.post-content h1 {
  letter-spacing: -1px;
  line-height: 1.2;
  font-size: 2em;
}

.post-content {
  margin-bottom: 30px;
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #f6f8fa;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

h1 {
  font-size: 3em;
}
h1 .small {
  display: block;
  color: #fff;
  font-size: 0.5em;
}

h3 {
  font-weight: 700 !important;
}

@media screen and (max-width: 40em) {
  h1 {
    font-size: 2em;
  }
}
ul.trigger {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.trigger li {
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 40em) {
  ul.trigger li {
    display: block;
  }
}

nav.site-nav {
  top: 25px;
}

ul.pagination {
  list-style-type: none;
  margin: 1em 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px solid #e1e1e1;
}
ul.pagination li {
  display: inline-block;
  width: 32.5%;
  color: #ccc;
}
ul.pagination li.page_number {
  text-align: center;
  color: #000;
}
ul.pagination li.next {
  text-align: right;
}

/* tag list */
ul.tags {
  list-style-type: none;
  margin: 1em 0;
  padding-bottom: 0;
}
ul.tags li {
  display: inline-block;
  margin: 0 0.25em 0.5em 0;
}
ul.tags li a {
  display: block;
  padding: 0.25em 0.5em;
  background-color: #e8e8e8;
  color: #35134f;
  font-size: 0.8em;
}
ul.tags li a:hover {
  background-color: #35134f;
  color: #fff;
  text-decoration: none;
}
ul.tags li a.active {
  background-color: #35134f;
  color: #fff;
  cursor: auto;
}

ul.skills {
  margin-bottom: 1em;
}

/* medium up: */
@media screen and (min-width: 40em) {
  .row {
    display: inline-block;
    width: 100%;
    clear: both;
    padding: 1em 0;
  }
  .row .columns {
    padding: 0 1em;
    box-sizing: border-box;
  }
  .row .medium-2, .row .medium-3, .row .medium-4, .row .medium-6, .row .medium-8, .row .medium-9, .row .medium-10, .row .medium-11 {
    float: left;
    box-sizing: border-box;
  }
  .row .medium-2 {
    width: 16.6666666667%;
  }
  .row .medium-3 {
    width: 25%;
  }
  .row .medium-4 {
    width: 33.3333333333%;
  }
  .row .medium-5 {
    width: 41.6666666667%;
  }
  .row .medium-6 {
    width: 50%;
  }
  .row .medium-7 {
    width: 58.3333333333%;
  }
  .row .medium-8 {
    width: 66.6666666667%;
  }
  .row .medium-9 {
    width: 75%;
  }
  .row .medium-10 {
    width: 83.3333333333%;
  }
  .row .medium-11 {
    width: 91.6666666667%;
  }
  .row .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
}
h2.meta {
  border-bottom: 1px solid #e8e8e8;
  font-size: 1.1em;
  color: #828282;
  font-weight: 300 !important;
  text-transform: uppercase;
  padding-bottom: 0.5em;
}

ul.related, ul.updates, ul.links {
  list-style-type: none;
  margin: 0 0 2em 0.5em;
  padding: 0;
}
ul.related li:before, ul.updates li:before, ul.links li:before {
  content: "-";
  text-indent: -5px;
  margin-right: 10px;
}

.jwt {
  font-size: 12px;
}

.post table td, .post table th {
  padding: 10px;
}
.post p, .post li {
  font-size: 1.1em;
  line-height: 1.75em;
  color: rgb(94, 103, 114);
}

.project h2, .project p {
  color: #111;
}
.project h2 {
  line-height: 1.25;
}
.project ul.meta {
  color: #828282;
}

a.project:hover h2 {
  color: #35134f;
}

.post-image {
  text-align: center;
  background-color: #efefef;
  margin: 1em 0;
  border-top: 1px solid #ccc;
}

.sidebar h2 {
  margin-bottom: 0;
  font-size: 1em;
  font-weight: bold;
  color: rgb(66.25, 66.25, 66.25);
}
.sidebar ul.posts {
  list-style-type: none;
  margin: 0 0 1em 0;
  padding: 0;
}
.sidebar ul.posts li {
  border-bottom: 1px solid #e8e8e8;
}
.sidebar ul.posts li a {
  display: block;
  padding: 0.5em 1em 0.5em 0;
}
.sidebar #dailyphoto, .sidebar #recentvideo {
  border-top: 1px solid #e8e8e8;
  padding: 15px 0;
}
.sidebar #dailyphoto .meta, .sidebar #recentvideo .meta {
  border: none;
}
.sidebar #dailyphoto a, .sidebar #recentvideo a {
  display: block;
  margin-bottom: 10;
}
.sidebar #dailyphoto a img, .sidebar #recentvideo a img {
  border: 1px solid #e8e8e8;
  padding: 3px;
}
.sidebar #dailyphoto a:hover img, .sidebar #recentvideo a:hover img {
  border-color: #35134f;
}

@media screen and (max-width: 40em) {
  .sidebar {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid rgb(66.25, 66.25, 66.25);
  }
}
footer {
  background-color: #0c023e;
}
footer .wrapper {
  padding: 3em 0;
}
footer h2 {
  color: #fff !important;
}
footer a {
  color: #f1f1f1 !important;
}
footer p {
  color: #e8e8e8;
}
footer .pgp {
  margin-top: 10px;
}
footer .footer-col-1 {
  width: -webkit-calc(30% - (30px / 2));
  width: calc(30% - 30px / 2);
}
footer .footer-col-3 {
  width: -webkit-calc(30% - (30px / 2));
  width: calc(30% - 30px / 2);
}

@media screen and (max-width: 40em) {
  .wrapper {
    padding: 20px !important;
  }
  .footer-col-1, .footer-col-2, .footer-col-3 {
    width: 100% !important;
  }
}
.post-list .post-row li .medium-4 {
  padding-left: 0 !important;
}
.post-list h2 {
  margin-bottom: 0;
}
.post-list .post-meta {
  margin: 5px 0 10px 0;
  display: block;
}

.post-container a {
  display: flex;
  padding-bottom: 20px;
}
.post-container a h2 {
  line-height: 1.4em;
}
.post-container a h2 .external-icon {
  margin-left: 5px;
  height: 20px;
  width: 20px;
}
.post-container a p {
  color: #424242;
}
.post-container a p.time {
  margin: 0;
  padding: 0;
}
.post-container a p.time time {
  display: inline-block;
  margin: 3px 0;
  color: #999;
}
.post-container a p.time span.pill {
  margin-left: 10px;
  padding: 0.25em 0.75em;
  border-radius: 5px;
  background-color: #e8e8e8;
  color: #000;
  font-size: 0.8rem;
}
.post-container a:hover {
  text-decoration: none;
}
.post-container a:hover h2 {
  text-decoration: underline !important;
}

.column-left {
  width: 40%;
  min-height: 120px;
  background-image: url("/assets/images/default_thumbnail.jpg");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

.column-right {
  width: 60%;
  padding-left: 20px;
}

@media screen and (max-width: 40em) {
  .post-container a {
    display: block;
  }
  .column-left, .column-right {
    width: 100%;
    overflow: hidden;
  }
  .column-right {
    padding: 10px;
  }
}
code:not([class]) {
  background-color: black;
  color: white;
  padding: 5px;
  font-size: 0.8em;
}

.search #searchbox {
  width: 70%;
  font-size: 16px;
  padding: 0.5em 1em;
}
.search #searchbutton {
  width: 20%;
  min-width: 125px;
  display: inline-block;
  border: none;
  padding: 0.6rem 1rem;
  margin: 0;
  text-decoration: none;
  background: #0c023e;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.search .logo {
  padding: 0.25em 0;
}
.search #hits {
  padding-top: 1em;
}

.print-only {
  display: none;
}

@media print {
  header, footer, .sidebar, .hide-print {
    display: none;
  }
  p.header1 {
    font-size: 1.75em !important;
  }
  p, li {
    font-size: 14px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
    margin-bottom: 0 !important;
  }
  h4 {
    font-size: 18px;
    margin-bottom: 0 !important;
  }
  .print-only {
    display: block;
  }
}
.linktree h1, .linktree p, .linktree a {
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
}
.linktree img {
  max-width: 50%;
}
.linktree a {
  padding: 10px 0;
  display: block;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.9);
}
.linktree a:hover {
  background-color: #fff;
}
.linktree hr {
  margin-bottom: 15px;
}

.new-post {
  background-color: #f4f5f6;
}
.new-post .post-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.new-post .post-header .overlay {
  background-color: rgba(4, 0, 25, 0.6);
  padding: 6em 0;
  text-align: center;
}
.new-post .post-header .overlay h1 {
  color: #ffffff;
  font-size: 3em;
}
@media screen and (max-width: 40em) {
  .new-post .post-header .overlay h1 {
    font-size: 2em;
  }
}
.new-post .post-header .overlay p {
  color: #fff;
  font-weight: 300 !important;
}
.new-post .post-header .overlay-20 {
  background-color: rgba(4, 0, 25, 0.2);
}
.new-post .post-header .overlay-30 {
  background-color: rgba(4, 0, 25, 0.3);
}
.new-post .post-header .overlay-40 {
  background-color: rgba(4, 0, 25, 0.4);
}
.new-post .post-header .overlay-80 {
  background-color: rgba(4, 0, 25, 0.8);
}
.new-post .post-wrapper {
  margin-top: -100px;
}
.new-post .post-wrapper .columns {
  padding-top: 10px;
  background-color: #fff;
  box-shadow: 0, 0, 0, 0.05 0px 14px 26px 0px;
}
.new-post .post-wrapper .columns h2, .new-post .post-wrapper .columns h3, .new-post .post-wrapper .columns h4, .new-post .post-wrapper .columns h5, .new-post .post-wrapper .columns h6 {
  color: rgb(42, 47, 54);
}
.new-post .post-wrapper .columns h2 {
  font-size: 2em;
}
.new-post .post-wrapper .columns h3 {
  font-size: 1.4em;
  font-weight: 400 !important;
}
.new-post .post-wrapper .columns .post-content {
  padding-top: 3em;
}
.new-post .post-wrapper .columns .post-content p, .new-post .post-wrapper .columns .post-content li {
  font-size: 1.1em;
  line-height: 1.75em;
  color: rgb(94, 103, 114);
}
.new-post .post-wrapper .columns .post-content p code, .new-post .post-wrapper .columns .post-content li code {
  background-color: #35134f;
  padding: 0.4em;
}
.new-post .post-wrapper .columns .post-content .tags {
  margin-top: 25px;
}
.new-post .post-wrapper .columns .post-content .tags a {
  border-bottom: none;
}
.new-post .post-wrapper .columns .post-content .tags a:hover {
  color: #fff;
  border-bottom: none;
}
.new-post .post-wrapper .columns .post-content a {
  color: #35134f;
  border-bottom: 1px dashed #35134f;
}
.new-post .post-wrapper .columns .post-content a:hover {
  text-decoration: none;
  border-bottom-style: solid;
}
.new-post .post-wrapper .columns .post-content .photo-wrapper {
  background-color: #f4f5f6;
  border-radius: 0.3em;
  padding: 2em;
  margin-bottom: 1em;
  display: block; /* Adjust to fit the image */
}
.new-post .post-wrapper .columns .post-content .photo-wrapper img {
  margin: auto;
  display: block; /* Prevents image spacing issues */
  max-width: 100%; /* Ensures responsiveness */
  border-radius: 6px; /* Optional rounded corners for the image */
  border: 1px solid rgba(0, 0, 0, 0.05); /* Light border */
}
.new-post .post-wrapper .columns .post-section {
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.new-post .post-wrapper .columns .post-recent {
  padding-bottom: 3em;
}
.new-post .post-wrapper .columns .post-recent .row {
  padding-top: 0;
}
.new-post .post-wrapper blockquote p {
  color: #35134f !important;
  letter-spacing: -1px;
  line-height: 1.5em !important;
}
.new-post .post-wrapper blockquote {
  border: none;
  font-size: 24px;
  text-align: center;
  max-width: 90%;
  margin: 0 auto 15px auto;
}
.new-post .post-wrapper blockquote > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 40em) {
  .post-wrapper .post-content {
    padding: 20px !important;
  }
  .post-wrapper .post-recent {
    padding: 20px !important;
  }
  .post-wrapper .post-recent img {
    display: block;
  }
}
.top-banner {
  background-image: url("/assets/images/default_post_thumbnail.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3em 0;
}
.top-banner h1, .top-banner p {
  color: #fff;
}
.top-banner .basic-header {
  text-align: center;
  padding: 0 3em;
}

.tag .intro {
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: 1px solid #e8e8e8;
}

/*# sourceMappingURL=main.css.map */