@import url("/assets/fonts/Dosis.css");
@import url("/assets/fonts/Agdasima.css");
@import url("/assets/fonts/Russo One.css");
@import url("/assets/fonts/Orbit.css");
* {
  box-sizing: border-box;
}

/* Reset Headings */
.page-title, h1, h2, h3, h4, h5, h6 {
  font-size: initial;
  font-weight: initial;
  margin: 25px 0;
  margin-bottom: 10px;
}

.page-title, h1, h2 {
  font-family: "Russo One";
}

h3, h4, h5, h6 {
  font-family: "Dosis";
}

.page-title {
  font-size: 2em;
}

h1 {
  margin-top: 35px;
  font-size: 1.75em;
}

h2 {
  margin-top: 30px;
  font-size: 1.3em;
}

h3 {
  font-size: 1.25em;
  font-weight: 700;
  transform: scaleY(0.9);
}

h4 {
  font-size: 1.1em;
  font-weight: 650;
  font-style: italic;
}

h5 {
  font-size: 1em;
  font-weight: 600;
  font-style: italic;
}

h6 {
  font-size: 1em;
  font-style: italic;
}

div > h1:first-child,
div > h2:first-child,
div > h3:first-child,
div > h4:first-child,
div > h5:first-child,
div > h6:first-child {
  margin-top: 0;
}

a:link {
  color: #6d55ce;
}

a:hover, a:active {
  color: #4b32ae;
}

a:visited {
  color: #738627;
}

.navbar-text {
  font-family: "Agdasima";
  font-size: 1.25em;
}

p, body {
  font-family: "Dosis";
}

body {
  background: #1c1c1a;
  color: #e9e8ef;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-y: scroll;
}

.hidden {
  display: none;
}

footer {
  background: #020301;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

footer p {
  color: #e9e8ef;
  margin: 0;
}

#footer-logo svg {
  height: 60px;
  width: auto;
}

#content {
  flex-grow: 1;
  display: flex;
  align-items: flex-start; /* Ensure content aligns at the top */
  overflow: hidden;
}
#content.center {
  justify-content: center;
}

#page-content {
  background: #262624;
  flex-grow: 1;
  max-width: 960px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: 0px;
  transition: 0.25s;
}

ul {
  list-style-type: square;
}

.table {
  display: table;
  border-collapse: collapse;
  margin: 10px 0;
  margin-right: 10px;
  border: 1px solid #878785;
}

.table-cell, .table-cell-number {
  display: table-cell;
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border: none;
}

.table-cell-number {
  text-align: right;
}

.table-row, .table-row-italic, .table-row-border-top {
  display: table-row;
}
.table-row:hover, .table-row-italic:hover, .table-row-border-top:hover {
  background: linear-gradient(to bottom, #636462 0%, #2a2b29 50%, #636462 100%);
}

.table-row-heading {
  display: table-row;
}

.table-row-heading {
  background: #4a416c;
  border-bottom: 1px solid #878785;
  font-weight: bold;
}

.table-row-border-top {
  border-top: 1px solid #878785;
}

.table-row-italic {
  font-style: italic;
}

.post-list-item {
  margin-bottom: 10px;
}

.post-title {
  font-weight: bold;
}

.post-title-description-separator {
  font-size: x-large;
}

.post-description {
  font-style: italic;
}

.click-cursor {
  cursor: pointer;
}

.flex-parent {
  display: flex;
}

.flex-center {
  margin: auto;
}

.inject-svg {
  display: inline-flex; /* Makes the container fit around the SVG */
  align-items: center; /* Centers the SVG vertically */
  justify-content: center; /* Centers the SVG horizontally */
}

.inject-svg > svg {
  width: auto;
  max-height: 100%; /* Scales the SVG to the full height of the container */
  height: 100%; /* Makes sure the SVG takes full height */
}

.undecorated-link,
.undecorated-link:link,
.undecorated-link:visited {
  text-decoration: none; /* removes the underline */
  color: inherit !important;
}

.lightbox-item,
.lightbox-link {
  position: relative;
  transition: transform 0.5s;
  cursor: pointer;
  /* When you mouse over the container, fade in the overlay title */
}
.lightbox-item:hover .hover-title-overlay,
.lightbox-link:hover .hover-title-overlay {
  opacity: 1;
}

.width-fill {
  display: block;
  width: 100%;
  height: auto;
}

figure {
  margin: auto;
}

figcaption {
  background-color: #514e5f;
  overflow: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
}

/* in main for inline (backtick wrapped) text modification */
code {
  background-color: #40403d;
}

.aura-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 30%;
  opacity: 0;
  pointer-events: none;
  z-index: -100;
  border: 20px solid #738627;
  filter: blur(5px);
}
.aura-effect.fade {
  animation: auraFadeFrames 1s forwards;
}

@keyframes auraFadeFrames {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.4);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
}
.embed-full-width-center {
  max-width: 864px;
  width: 100%;
}

.embed-three-quarter-width-center {
  max-width: 720px;
  width: 100%;
}

.embed-half-width-right, .embed-half-width-left, .embed-half-width-center {
  max-width: 480px;
  width: 100%;
}

.embed-third-width-right, .embed-third-width-left {
  max-width: 319.68px;
  width: 100%;
}

.embed-fourth-width-right, .embed-fourth-width-left {
  max-width: 240px;
  width: 100%;
}

.embed-half-width-center, .embed-three-quarter-width-center, .embed-full-width-center {
  margin: 15px auto;
}

.embed-fourth-width-left, .embed-third-width-left, .embed-half-width-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.embed-fourth-width-right, .embed-third-width-right, .embed-half-width-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.embed-half-width-center::after, .embed-three-quarter-width-center::after, .embed-full-width-center::after {
  content: "";
  display: table;
  clear: both;
  margin-bottom: 10px;
}

.embed-full-width-center {
  clear: both;
}

.embed-three-quarter-width-center {
  clear: both;
}

.embed-half-width-center {
  clear: both;
}

.embed-half-width-left {
  clear: both;
}

.embed-half-width-right {
  clear: both;
}

.embed-third-width-left {
  clear: both;
}

.embed-third-width-right {
  clear: both;
}

.embed-fourth-width-left {
  clear: both;
}

.embed-fourth-width-right {
  clear: both;
}

@media only screen and (max-width: 796.8px) {
  .embed-half-width-left, .embed-half-width-right {
    float: none;
    margin: 15px auto;
  }
}
@media only screen and (max-width: 624px) {
  .embed-third-width-left, .embed-third-width-right {
    max-width: 480px;
    float: none;
    margin: 15px auto;
  }
}
.half-width-item {
  padding: 4px 4px;
  float: left;
  width: 49.99999%;
}
@media only screen and (max-width: 499.2px) {
  .half-width-item {
    width: 100%;
  }
}

.third-width-item {
  padding: 4px 4px;
  float: left;
  width: 33.332%;
}
@media only screen and (max-width: 499.2px) {
  .third-width-item {
    width: 100%;
  }
}

blockquote {
  max-width: 768px;
  width: 100%;
  margin: 15px auto;
  position: relative;
  padding: 8px;
  background-color: #4b32ae;
  border-top: 1px solid #291c5f;
  border-bottom: 1px solid #291c5f;
}

blockquote::before, blockquote::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.5em;
  height: 1.5em;
  color: #e9e8ef;
}

blockquote::before {
  top: 0;
  left: 0;
  background-image: url("/assets/images/quote-open.svg");
}

blockquote::after {
  bottom: 0;
  right: 0;
  background-image: url("/assets/images/quote-close.svg");
}

blockquote p {
  width: calc(100% - 3.75em);
  margin: auto;
}

#banner-area {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  overflow: hidden;
}
#banner-area #banner-logo {
  height: 90%;
}
#banner-area #banner-logo img {
  height: 100%;
}

#banner-text {
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  font-family: Orbit;
  font-size: 70px;
  font-weight: 900;
  color: black;
  transform: scaleY(1.2);
  user-select: none;
  padding: 0;
  margin: 0;
}

/* logo shadows */
#banner-area img, #banner-text {
  filter: drop-shadow(-3px 0 0.5px hsl(252, 55%, 34%)) drop-shadow(3px 0 0.5px #738627);
}

#topnav-bounds {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  width: auto;
}

#topnav {
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(to bottom, #3c3d3b 0%, #191917 100%);
}
#topnav a {
  float: left;
  color: #c2c3c1;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}
#topnav a:hover {
  background: #738627;
  color: #020301;
}
#topnav a.topnav-current {
  background: #3a2786;
  color: #fcfdfb;
}

#sticky-header {
  top: 0;
  position: sticky;
  background: linear-gradient(to bottom, #2a2b29 90%, #161614 100%);
  z-index: 100;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

#title-bar {
  margin: 5px auto;
  text-align: center;
  justify-content: center;
  letter-spacing: -1px;
}
#title-bar h1 {
  padding: 0;
  margin: 0;
}

#navbar2 {
  overflow: hidden;
  background: linear-gradient(to bottom, #3c3d3b 0%, #191917 100%);
}
#navbar2 a {
  float: left;
  display: block;
  color: #c2c3c1;
  text-align: center;
  padding: 7px 16px;
  text-decoration: none;
}
#navbar2 a:hover {
  background: #738627;
  color: #020301;
}
#navbar2 a.navbar2-current {
  background: #3a2786;
  color: #fcfdfb;
}

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