@font-face {
  font-family: DancingScript;
  src: url("../fonts/Dancing_Script/static/DancingScript-Regular.ttf");
}
@font-face {
  font-family: Kalam;
  src: url("../fonts/Kalam/Kalam-Regular.ttf");
}
@font-face {
  font-family: Shadows_Into_Light;
  src: url("../fonts/Shadows_Into_Light/ShadowsIntoLight-Regular.ttf");
}
@font-face {
  font-family: Courgette;
  src: url("../fonts/Courgette/Courgette-Regular.ttf");
}
@font-face {
  font-family: Rowdies;
  src: url("../fonts/Rowdies/Rowdies-Regular.ttf");
}
@font-face {
  font-family: Philosopher;
  src: url("../fonts/Philosopher/Philosopher-Regular.ttf");
}
@font-face {
  font-family: PassionOne;
  src: url("../fonts/Passion_One/PassionOne-Regular.ttf");
}
@font-face {
  font-family: SairaCondensed;
  font-weight: 400;
  src: url("../fonts/Saira_Condensed/SairaCondensed-Medium.ttf");
}
@font-face {
  font-family: Staatliches;
  src: url("../fonts/Staatliches/Staatliches-Regular.ttf");
}
@font-face {
  font-family: KaushanScript;
  src: url("../fonts/Kaushan_Script/KaushanScript-Regular.ttf");
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

strong, b {
  font-weight: 900;
}

em {
  font-style: italic;
}

/* Remove default margin */
* {
  margin: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.site-header {
  width: 100%;
}
@media (min-width: 1000px) {
  .site-header {
    height: 110px;
    display: flex;
    flex-direction: row;
    border: solid 1px;
    border-radius: 0px 0px 40px 40px;
    border-top: 0px;
  }
}
.site-header .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1000px) {
  .site-header .wrapper {
    padding-inline: 2rem 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.title-space {
  padding-left: 1rem;
}
@media (min-width: 1000px) {
  .title-space {
    padding: none;
  }
}

.title {
  font-family: KaushanScript;
  font-size: 2.5rem;
  color: #c48e13;
}
.title:hover {
  color: #2B3847;
}
@media (min-width: 1000px) {
  .title {
    text-align: left;
    font-size: 2rem;
  }
}

.blurb {
  font-family: Kalam;
}

.site-nav {
  height: 150px;
  align-items: center;
  justify-self: flex-end;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.site-nav li {
  list-style: none;
  padding: 1rem;
}
.site-nav a {
  color: #c48e13;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  text-transform: capitalize;
}
.site-nav a:hover {
  color: #2B3847;
}

body {
  background-color: #181f27;
  color: #c7c7c7;
  font-family: SairaCondensed;
  font-size: 1.05rem;
}
body p {
  margin: 0.5rem 1rem;
}
body h1 {
  font-size: 2rem;
  text-align: center;
  font-family: Staatliches;
}
body h1::after {
  content: "";
  display: block;
  width: 85%;
  height: 1px;
  background-color: white;
  margin-inline: auto;
  margin-bottom: 1rem;
}
body .page-content {
  width: 100%;
  padding: 1rem;
  border: solid 1px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.35);
}
@media (min-width: 1000px) {
  body .page-content {
    padding: 2rem;
  }
}
body .wrapper {
  margin: 1rem auto;
}
@media (min-width: 1000px) {
  body .wrapper {
    width: 90%;
  }
}
body h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
body h3 {
  font-size: 1.15rem;
  text-decoration-line: underline;
}

a {
  color: #c48e13;
  text-decoration: none;
}
a:hover {
  color: #2B3847;
  filter: brightness(280%);
}

.container {
  display: grid;
  min-height: 100%;
  margin-top: 3rem;
}
@media (min-width: 1000px) {
  .container {
    grid-template-columns: 2fr 5fr 2fr;
  }
}

.post-title {
  color: white;
}

#markdown-toc::before {
  content: "Contents";
  font-weight: bold;
}

#markdown-toc ul {
  list-style: decimal;
}

#markdown-toc {
  padding: 1.5em 2em;
  list-style: decimal;
}
@media (min-width: 1000px) {
  #markdown-toc {
    border: 1px solid #aaa;
    border-radius: 10px;
    position: fixed;
    left: 2%;
    width: 18%;
    min-width: 100px;
  }
}

.dt {
  color: #C39AEE;
  font-size: 1.25rem;
}

.prev-next {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-inline: 1.5rem;
  width: 100%;
}

.next-link {
  justify-content: flex-end;
}

#embedLink:hover {
  scale: 1.1;
}

.site-footer {
  background-color: #0a0a0a;
  color: rgba(226, 224, 224, 0.75);
  padding: 0.75rem 2rem;
  font-weight: bold;
  margin-top: 3rem;
}

.footer-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
@media (min-width: 1000px) {
  .footer-items {
    flex-direction: row;
  }
}

.credit-dessence {
  font-weight: 100;
  min-width: 11rem;
  font-size: 0.8rem;
  margin-top: 1rem;
  align-self: center;
}

.support-sticky {
  position: fixed;
  z-index: 20;
  filter: invert(75%);
  height: 40px;
  width: 40px;
  bottom: 5%;
  right: 10%;
}
@media (min-width: 1000px) {
  .support-sticky {
    right: 2%;
  }
}
.support-sticky:hover {
  scale: 150%;
  filter: brightness(0) saturate(100%) invert(52%) sepia(86%) saturate(457%) hue-rotate(4deg) brightness(93%) contrast(90%);
}
.support-sticky:hover::after {
  content: "";
}
.support-sticky::after {
  content: "Support";
}

.center {
  text-align: center;
}

.highlight {
  color: #C39AEE;
}

.hidden {
  display: none;
}

.dt-published {
  color: #C39AEE !important;
}

/* Tooltip from https://www.w3schools.com/css/css_tooltip.asp */
.jekyll-glossary {
  position: relative;
  display: inline-block;
  border-bottom: 2px dotted #0074bd;
  cursor: help;
}

.jekyll-glossary .jekyll-glossary-tooltip {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 5px;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  width: 160px;
  bottom: 100%;
  left: 50%;
  margin-left: -80px; /* Use half of the width to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.jekyll-glossary:hover .jekyll-glossary-tooltip {
  visibility: visible;
}

/* Style the source link (if there is one provided in the glossary entry). */
.jekyll-glossary-source-link:before {
  content: "[source]";
}

/* Arrow created with borders. */
.jekyll-glossary .jekyll-glossary-tooltip::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

/* Animation from invisible to visible on hover. */
.jekyll-glossary .jekyll-glossary-tooltip {
  opacity: 0;
  transition: opacity 1s;
}

.jekyll-glossary:hover .jekyll-glossary-tooltip {
  opacity: 1;
}

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