:root {
  --selection-color: #D1BCFD;
  --selected-text-color: #37265C;
  --font-size: calc(14px + .3vw);
}

p::selection, a::selection, h1::selection, h2::selection, h3::selection, span::selection, code::selection, abbr::selection {
  color: var(--selected-text-color);
  background-color: var(--selection-color);
}

@font-face {
  font-family: "Nunito Extra Bold";
  src: url("../../Assets/Fonts/Nunito-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Semi Bold";
  src: url("../../Assets/Fonts/Nunito-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
h2 {
  font-family: "Nunito Extra Bold", Arial, sans-serif;
  font-size: calc(19px + 0.4621vw);
  padding-top: calc(4px - 0.1vw);
  padding-left: calc(10px + 0.8vw);
  color: var(--text-color);
  text-align: left;
  margin: 0;
  transition: color 0.1s;
}

p, a, .vbox-title, .vbox-num {
  font-family: "Nunito Semi Bold", Arial, sans-serif;
  font-size: var(--font-size);
}

p {
  padding-right: calc(18px + 1vw);
  padding-left: calc(20px + 1.5vw);
  line-height: 150%;
  color: var(--text-color);
}

a {
  font-size: unset;
  color: var(--link-color);
  border-radius: var(--slight-radius);
  transition: all 0.1s ease-in-out;
}
a:focus, a:hover {
  color: var(--second-link-color);
}
a:focus {
  text-decoration: underline dashed;
}
a:hover {
  text-decoration: none;
}

code {
  font-size: calc(10px + 0.3vw);
  background: #2B2D30;
  border: #43454A solid 1px;
  border-radius: var(--slight-radius);
}

.important {
  text-decoration: underline dashed;
}

.tooltip {
  color: #b2b2b2;
  cursor: context-menu;
}

@media (pointer: coarse), (hover: none) {
  [title]:not(a) {
    position: relative;
    display: inline-flex;
    justify-content: center;
  }
  [title]:not(a)::after {
    scale: 0;
    transform: translateY(-15%);
    filter: blur(10px) opacity(0%);
    transition: transform 0.1s ease-in-out, filter 0.1s ease-in-out;
    font-size: var(--font-size);
    text-align: center;
    position: absolute;
    top: 90%;
    content: attr(title);
    color: var(--text-color);
    background-color: rgb(15, 17, 18);
    border-width: var(--sm-border);
    border-style: solid;
    border-color: var(--outline-color-hi);
    border-radius: var(--slight-radius);
    width: fit-content;
    padding: var(--lrg-border);
    z-index: 2;
  }
  [title]:not(a):hover::after {
    transform: none;
    filter: none;
    scale: unset;
  }
}
header {
  padding-bottom: calc(10px + 0.2621vw);
  padding-top: calc(14px + 0.3621vw);
  grid-row: 1;
}

.glint {
  background-image: linear-gradient(#fff, #fff);
}

#Title {
  display: inline-block;
  color: transparent;
  background-size: 400% 100%;
  background-clip: text;
  background-position: 100%;
  animation-name: slideIn;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
  font-size: calc(40px + 1vw);
  font-family: "Nunito Extra Bold", Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.32vw;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#Subtitle {
  display: inline;
  position: relative;
  left: 7px;
  font-size: calc(16px + 0.4vw);
  font-weight: 400;
  padding-left: 0;
  text-align: left;
  transition: all 0.15s ease-in-out;
  line-height: 100%;
}

h3#PageLink {
  display: flex;
  align-items: center;
  float: right;
  font-size: calc(24px + 0.3vw);
  text-decoration: underline var(--link-color);
}
h3#PageLink svg#Chevron {
  vertical-align: middle;
  fill: var(--link-color);
}
h3#PageLink:hover {
  text-decoration: none;
}
h3#PageLink:hover svg#Chevron {
  fill: var(--second-link-color);
}

.rightChev {
  position: relative;
  top: -0.1vh;
  left: 8px;
}

.leftChev {
  position: relative;
  top: -0.1vh;
  left: -8px;
}

@keyframes slideIn {
  from {
    background-position: 100%;
  }
  to {
    background-position: 0;
  }
}
:root {
  --panel-bg-color: rgb(25, 27, 28);
  --panel-bg-color-hi: rgb(17, 19, 20);
  --outline-color: rgba(255, 255, 255, .1);
  --outline-color-hi: rgba(255, 255, 255, .2);
}

.panel:last-child, div.panel.lone-section, div.lone-section:last-child, div.lone-section, .panel:not(:first-child, :last-child, div.lone-section), .panel:first-child, div.lone-section:first-child {
  background-color: var(--panel-bg-color);
  border: var(--sm-border) solid var(--outline-color);
  padding: calc(8px + 1vw) calc(12px + 0.3521vw) 0 calc(12px + 0.3521vw);
  transition: all 0.15s ease-in-out;
}
.panel:hover:last-child, div.lone-section:hover, .panel:hover:not(:first-child, :last-child, div.lone-section), .panel:hover:first-child {
  background-color: var(--panel-bg-color-hi);
  border-color: var(--outline-color-hi);
}

div#ContentDiv {
  grid-row: 2;
}

.panel:first-child, div.lone-section:first-child {
  border-radius: var(--slight-radius) var(--slight-radius) 0 0;
  border-bottom-width: 0;
  border-top-width: var(--sm-border);
}
.panel:not(:first-child, :last-child, div.lone-section), div.lone-section:not(:first-child, :last-child, div.lone-section) {
  border-bottom-width: 0;
  border-top-width: 0;
}
.panel:last-child, div.panel.lone-section, div.lone-section:last-child, div.lone-section {
  padding-bottom: calc(14px + 0.3621vw);
  border-radius: 0 0 var(--slight-radius) var(--slight-radius);
  border-top-width: 0;
}

div.lone-section {
  border-top-width: var(--sm-border) !important;
  border-radius: var(--slight-radius) !important;
  margin-bottom: calc(14px + 0.3621vw);
}

hr.small-spacer {
  max-width: 90%;
  height: 0;
  border: 0;
  margin: 0 auto;
  border-bottom: 1px dashed #434140;
}

.vbox-share, .vbox-title {
  backdrop-filter: blur(50px);
  background-color: rgba(28, 28, 28, 0.5);
}

.vbox-close {
  padding: 10px 15px;
}

.vbox-backdrop, .vbox-tooltip-inner {
  backdrop-filter: blur(5px);
}

#myTooltip {
  left: -0.6vw;
}

.vbox-tooltip-inner {
  font-family: "Nunito Semi Bold", Arial, sans-serif;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--slight-radius);
}

div.vbox-child {
  background-color: rgba(255, 255, 255, 0.01) !important;
}

#Gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1vh;
}

.column {
  display: flex;
  flex-direction: column;
  margin: 0.25rem;
}

.item {
  margin: 0.25rem;
  outline: none;
}

.galleryItem:hover .art {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 8px 8px rgba(0, 0, 0, 0.23);
}

.art {
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: 100%;
  border-width: var(--sm-border);
  border-color: rgba(255, 255, 255, 0.1);
  border-style: solid;
  border-radius: var(--slight-radius);
  transition: background-color 0.1s ease-in-out 0s, border-color 0.1s ease-in-out 0s, box-shadow 0.1s ease-in-out 0s, filter 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.3s;
}

.dynamic {
  filter: blur(5px) opacity(25%) grayscale(50%);
}

img.load {
  filter: none;
}

.empty {
  display: none;
}

@media (max-width: 800px) {
  #Gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
:root {
  --primary-accent: rgb(206, 185, 250);
  --secondary-accent: rgb(76, 255, 188);
  --link-color: rgb(215, 184, 243);
  --second-link-color: var(--secondary-accent);
  --text-color: rgb(255, 255, 255);
  --hi-text-color: rgb(104, 172, 175);
  --bg-color: rgb(29, 31, 32);
  background-color: var(--bg-color);
  padding: 0 1.32vw 1.32vw 1.32vw;
  height: 100%;
  text-align: left;
  transition: all 0.4s ease-in-out;
  --slight-radius: calc(2px + .2vw);
  --sm-border: calc(2px + .025vw);
  --med-border: calc(3px + .055vw);
  --lrg-border: calc(6px + .055vw);
}

hr.mid-spacer {
  color: rgb(67, 65, 64);
  background-color: rgb(67, 65, 64);
  margin: calc(14px + 0.3621vw) 0 calc(14px + 0.3621vw) 0;
  width: 100%;
  position: relative;
  z-index: -1;
}

.animate {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.show {
  opacity: unset;
  filter: unset;
  transform: unset;
}

.slide {
  filter: blur(10px);
  opacity: 0;
}

.slideLeft {
  transform: translateX(-10%);
}

.slideRight {
  transform: translateX(10%);
}

div#MasterGrid {
  display: grid;
  grid-template-rows: max-content max-content;
}

div#ContentDiv {
  grid-row: 2;
}

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