@font-face {
  font-family: "Contra";
  src: url("../fonts/Contra.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Zyborgs 3D";
  src: url("../fonts/Zyborgs 3D.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SuperMario256";
  src: url("../fonts/SuperMario256.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Kid-Icarus-NES";
  src: url("../fonts/Kid-Icarus-NES.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Diablo";
  src: url("../fonts/Diablo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --nav-bg-image-width: 3456;
  --nav-bg-image-height: 224;
  --navbar-height: 150px;
  --footer-height: 30px;
  --main-height: calc(100vh - var(--navbar-height) - var(--footer-height) - 8px);
  --nav-bg-scroll: calc(100vw - (var(--navbar-height) * (var(--nav-bg-image-width) / var(--nav-bg-image-height))));
  --face-width: 325px;
  --face-height: 220px;
  --face-depth: 10px;
}

html, body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
html nav, body nav {
  position: relative;
  width: 100vw;
  height: var(--navbar-height);
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 5px ridge #888;
}
html nav #background-container, body nav #background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/contra-background.png"); /* https://www.spriters-resource.com/nes/contra/sheet/7680/ */
  background-repeat: no-repeat;
  background-size: cover;
  animation: background-scroll 30s linear infinite alternate;
  z-index: 5;
}
html nav #left-mario, html nav #right-mario, body nav #left-mario, body nav #right-mario {
  height: calc(var(--navbar-height) - 10%);
  transition: transform 0.1s ease-in-out, filter 0.1s ease, opacity 0.1s ease;
  cursor: pointer;
  width: auto;
  z-index: 6;
}
html nav #left-mario:hover, html nav #right-mario:hover, body nav #left-mario:hover, body nav #right-mario:hover {
  transform: scale(1.1);
}
html nav #left-mario, body nav #left-mario {
  animation: 0.75s ease-out slide-from-left;
  margin-left: 25px;
}
html nav #right-mario, body nav #right-mario {
  animation: 0.75s ease-out slide-from-right;
  margin-right: 25px;
}
html nav .flash, body nav .flash {
  animation: flash 0.1s linear;
}
html nav #bullet-holes-container, body nav #bullet-holes-container {
  width: 100%;
  height: var(--navbar-height);
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
html nav #bullet-holes-container .bullet-hole, body nav #bullet-holes-container .bullet-hole {
  position: absolute;
  width: 30px;
  height: auto;
  z-index: 7;
}
html nav #bullet-holes-container #letters-container, body nav #bullet-holes-container #letters-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 5px;
  font-family: "SuperMario256", monospace;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #BBB;
  text-shadow: 5px 5px 0px #000, 5px 5px 0px #333, 6px 6px 0px #666;
  animation: 0.25s ease-out slide-from-below;
  margin: 0;
  z-index: 6;
  align-self: center;
  padding: 10px 30px;
  border-radius: 35px;
  background-color: rgba(255, 0, 0, 0.15);
  outline: 1px solid #999;
  border: 10px solid #e71e07;
  border-style: ridge;
  box-shadow: 0px 2px 0px #881104, 0px 2px 0px #999;
}
html nav #bullet-holes-container #letters-container span, body nav #bullet-holes-container #letters-container span {
  transition: transform 0.75s ease-in-out;
  display: inline-block;
  cursor: pointer;
  line-height: 1;
}
html nav #bullet-holes-container #letters-container .spin, body nav #bullet-holes-container #letters-container .spin {
  animation: rotate 0.25s ease;
}
html nav #bullet-holes-container #letters-container span:hover, body nav #bullet-holes-container #letters-container span:hover {
  transform: rotate(360deg);
}
html nav #bullet-holes-container #letters-container .blue, body nav #bullet-holes-container #letters-container .blue {
  color: #009cda;
}
html nav #bullet-holes-container #letters-container .red, body nav #bullet-holes-container #letters-container .red {
  color: #e71e07;
}
html nav #bullet-holes-container #letters-container .green, body nav #bullet-holes-container #letters-container .green {
  color: #42b132;
}
html nav #bullet-holes-container #letters-container .yellow, body nav #bullet-holes-container #letters-container .yellow {
  color: #fcd000;
}
html nav::before, body nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.15);
  pointer-events: none;
  z-index: 1;
}
html main, body main {
  height: var(--main-height);
  overflow-x: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  transition: filter 0.3s ease;
}
html main .pause-mask, body main .pause-mask {
  position: absolute;
  inset: 0;
  background: rgba(200, 200, 200, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
html main #controller-container, body main #controller-container {
  position: fixed;
  bottom: calc(var(--footer-height) + 2%);
  left: 2%;
  z-index: 7;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 5px 10px;
  cursor: grab;
  user-select: none;
  width: 450px;
  height: 176px;
  background-color: #e0ded4;
  border: 2px solid #4B4E43;
  border-radius: 4px;
}
html main #controller-container #controller, body main #controller-container #controller {
  width: 450px;
  height: 176px;
  position: relative;
}
html main #controller-container #controller #buttons-container, body main #controller-container #controller #buttons-container {
  position: absolute;
  top: 32px;
  width: 100%;
  height: 138px;
  background-color: #464646;
  background: linear-gradient(to bottom, #3a3e3b 0%, #232624 100%);
  box-shadow: inset 0px 1px 2px 1px rgba(0, 10, 0, 0.91);
}
html main #controller-container #controller #buttons-container #buttons, body main #controller-container #controller #buttons-container #buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
html main #controller-container #controller #buttons-container #buttons #left, html main #controller-container #controller #buttons-container #buttons #middle, html main #controller-container #controller #buttons-container #buttons #right, body main #controller-container #controller #buttons-container #buttons #left, body main #controller-container #controller #buttons-container #buttons #middle, body main #controller-container #controller #buttons-container #buttons #right {
  height: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 4px;
}
html main #controller-container #controller #buttons-container #buttons #left, body main #controller-container #controller #buttons-container #buttons #left {
  width: 30%;
  position: relative;
}
html main #controller-container #controller #buttons-container #buttons #left #cross, body main #controller-container #controller #buttons-container #buttons #left #cross {
  position: absolute;
  left: 15px;
  bottom: 15px;
  width: 110px;
  height: 90px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #circle, body main #controller-container #controller #buttons-container #buttons #left #cross #circle {
  position: absolute;
  width: 25px;
  height: 25px;
  background: linear-gradient(180deg, rgb(22, 22, 22) 30%, rgb(58, 58, 58) 100%);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 4;
  border-radius: 50%;
  box-shadow: inset 0px -2px 0px 0px rgba(255, 255, 255, 0.1);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #horizontal-front, html main #controller-container #controller #buttons-container #buttons #left #cross #horizontal-back, html main #controller-container #controller #buttons-container #buttons #left #cross #vertical-front, html main #controller-container #controller #buttons-container #buttons #left #cross #vertical-back, body main #controller-container #controller #buttons-container #buttons #left #cross #horizontal-front, body main #controller-container #controller #buttons-container #buttons #left #cross #horizontal-back, body main #controller-container #controller #buttons-container #buttons #left #cross #vertical-front, body main #controller-container #controller #buttons-container #buttons #left #cross #vertical-back {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 100px;
  height: 35px;
  background-color: #252725;
  border-radius: 1px;
  z-index: 2;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #vertical-front, html main #controller-container #controller #buttons-container #buttons #left #cross #vertical-back, body main #controller-container #controller #buttons-container #buttons #left #cross #vertical-front, body main #controller-container #controller #buttons-container #buttons #left #cross #vertical-back {
  transform: rotate(90deg);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #horizontal-back, html main #controller-container #controller #buttons-container #buttons #left #cross #vertical-back, body main #controller-container #controller #buttons-container #buttons #left #cross #horizontal-back, body main #controller-container #controller #buttons-container #buttons #left #cross #vertical-back {
  width: 105px;
  height: 40px;
  background-color: #e0ded4;
  z-index: 1;
  border-radius: 4px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow, html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow, html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow, html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow {
  position: absolute;
  z-index: 3;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow, html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow {
  top: 28px;
  padding: 0px 2px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow img, html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow img, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow img, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow img {
  width: 28px;
  height: 35px;
  cursor: pointer;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow {
  left: 5px;
  width: 28px;
  height: 35px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow {
  right: 5px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow, html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow {
  left: 38px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow img, html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow img, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow img, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow img {
  cursor: pointer;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow {
  top: -4px;
  padding: 2px 0px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow img, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow img {
  width: 34px;
  height: 24px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow {
  top: 63px;
  padding: 4px 0px 0px 0px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow img, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow img {
  width: 34px;
  height: 24px;
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow:hover, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow:hover {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow:active, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow:active {
  background: linear-gradient(to right, rgba(255, 255, 0, 0.5) 0%, rgba(255, 255, 0, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow:active img, body main #controller-container #controller #buttons-container #buttons #left #cross #left-arrow:active img {
  transform: scale(0.8);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow:hover, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow:hover {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow:active, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow:active {
  background: linear-gradient(to left, rgba(255, 255, 0, 0.5) 0%, rgba(255, 255, 0, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow:active img, body main #controller-container #controller #buttons-container #buttons #left #cross #right-arrow:active img {
  transform: scale(0.8);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow:hover, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow:hover {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow:active, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow:active {
  background: linear-gradient(to bottom, rgba(255, 255, 0, 0.5) 0%, rgba(255, 255, 0, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow:active img, body main #controller-container #controller #buttons-container #buttons #left #cross #up-arrow:active img {
  transform: scale(0.8);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow:hover, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow:hover {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow:active, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow:active {
  background: linear-gradient(to top, rgba(255, 255, 0, 0.5) 0%, rgba(255, 255, 0, 0.05) 100%);
}
html main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow:active img, body main #controller-container #controller #buttons-container #buttons #left #cross #down-arrow:active img {
  transform: scale(0.8);
}
html main #controller-container #controller #buttons-container #buttons #middle, body main #controller-container #controller #buttons-container #buttons #middle {
  width: 36%;
}
html main #controller-container #controller #buttons-container #buttons #middle .stripe, body main #controller-container #controller #buttons-container #buttons #middle .stripe {
  width: 100%;
  height: 20%;
  background-color: rgba(123, 131, 108, 0.8);
  border-radius: 5px;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container {
  position: absolute;
  bottom: 17px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
  row-gap: 4px;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-labels, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-labels {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-labels span, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-labels span {
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #DF2015;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons {
  background-color: #e0ded4;
  border-radius: 6px;
  border: 4px solid #e0ded4;
  box-shadow: inset 0px 0px 3px 4px rgba(50, 50, 50, 0.3);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  width: 96%;
  height: 2rem;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span {
  height: 100%;
  cursor: pointer;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #pause, html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #start, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #pause, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #start {
  width: 40px;
  height: 50%;
  background-color: #464646;
  border-radius: 10px;
  border: 1px solid #272723;
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.51);
  cursor: pointer;
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #pause:active, html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #start:active, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #pause:active, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span #start:active {
  box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.51);
}
html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span:hover #pause, html main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span:hover #start, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span:hover #pause, body main #controller-container #controller #buttons-container #buttons #middle #pause-start-container #pause-start-buttons span:hover #start {
  box-shadow: 0px 0px 1px 4px rgba(0, 187, 50, 0.7);
}
html main #controller-container #controller #buttons-container #buttons #right, body main #controller-container #controller #buttons-container #buttons #right {
  position: relative;
  height: 100%;
  width: 30%;
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container {
  position: absolute;
  bottom: 1px;
  left: 10px;
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 4px;
  background-color: #e0ded4;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #b-button, html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #a-button, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #b-button, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #a-button {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to bottom, #DF2015 0%, #f84936 100%);
  border-radius: 50%;
  border: 1px rgba(0, 0, 0, 0.51) solid;
  box-shadow: inset 0px 1px 2px 0px #FBFBFB, 0px 1px 1px 0px rgba(0, 0, 0, 0.71);
  cursor: pointer;
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #b-button:active, html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #a-button:active, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #b-button:active, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container #a-button:active {
  border: 1px rgba(0, 0, 0, 0.5) solid;
  box-shadow: inset 0px 0px 1px 0px #FBFBFB, 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container:has(#b-button:hover), body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container:has(#b-button:hover) {
  box-shadow: 0 0 1px 4px rgba(255, 127, 0, 0.7);
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container:has(#a-button:hover), body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ba-buttons .button-container:has(#a-button:hover) {
  box-shadow: 0 0 1px 4px rgba(255, 127, 0, 0.7);
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ab-labels, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ab-labels {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8px;
}
html main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ab-labels span, body main #controller-container #controller #buttons-container #buttons #right #ba-buttons-container #ab-labels span {
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #DF2015;
  width: 50%;
  display: block;
  text-align: right;
}
html main #controller-container span, body main #controller-container span {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
html main #controller-container span img, body main #controller-container span img {
  width: 25px;
  height: auto;
  cursor: pointer;
}
html main #controller.dragging, body main #controller.dragging {
  cursor: grabbing;
}
html main section, body main section {
  height: 100%;
  flex: 0 0 100vw;
  color: black;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
html main #intro, body main #intro {
  background-color: rgba(0, 255, 187, 0.9);
}
html main #intro #intro-container, body main #intro #intro-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
html main #intro #intro-container #about-container, body main #intro #intro-container #about-container {
  display: none;
  position: absolute;
  top: 15%;
  left: 24%;
  width: 42%;
  height: 20%;
  z-index: 5;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
html main #intro #intro-container #about-container #about, body main #intro #intro-container #about-container #about {
  animation: scrollUp 60s linear forwards;
}
html main #intro #intro-container #about-container #about h1, body main #intro #intro-container #about-container #about h1 {
  text-align: center;
  font-family: "Contra", monospace;
  text-shadow: 1px 1px 1px white, 1px 1px 1px grey;
  font-size: 1rem;
}
html main #intro #intro-container #about-container #about p, body main #intro #intro-container #about-container #about p {
  color: white;
  line-height: 1.75rem;
  letter-spacing: 3px;
  font-family: "Contra", monospace;
  text-shadow: 1px 1px 3px black, 3px 3px 6px #2038ec, 4px 4px 6px grey;
  font-size: 1.25rem;
}
html main #intro #intro-container #about-container #about p span, body main #intro #intro-container #about-container #about p span {
  padding: 0;
  margin: 0;
  letter-spacing: -1em;
  display: inline-block;
}
html main #intro #intro-container #about-container #about p .blue, body main #intro #intro-container #about-container #about p .blue {
  color: #009cda;
}
html main #intro #intro-container #about-container #about p .red, body main #intro #intro-container #about-container #about p .red {
  color: #e71e07;
}
html main #intro #intro-container #about-container #about p .green, body main #intro #intro-container #about-container #about p .green {
  color: #42b132;
}
html main #intro #intro-container #about-container #about p .yellow, body main #intro #intro-container #about-container #about p .yellow {
  color: #fcd000;
}
@keyframes scrollUp {
  from {
    transform: translateY(7%);
  }
  to {
    transform: translateY(-105%);
  }
}
html main #intro #intro-container #castle, body main #intro #intro-container #castle {
  height: 73%;
  position: absolute;
  inset: 0;
  background-image: url("../images/castle.png");
  background-repeat: repeat-x;
  background-position: right top;
  background-size: auto 100%;
  image-rendering: pixelated;
  animation: castlePan 5s linear forwards;
}
@keyframes castlePan {
  from {
    background-position: 175% top;
  }
  to {
    background-position: -200% top;
  }
}
html main #intro #intro-container #cliffs, body main #intro #intro-container #cliffs {
  width: 100%;
  height: 10%;
  position: absolute;
  bottom: 17%;
  background-image: url("../images/cliffs.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  image-rendering: pixelated;
  animation: cliffsPan 5s linear forwards;
}
@keyframes cliffsPan {
  from {
    background-position: 150% top;
  }
  to {
    background-position: -50% top;
  }
}
html main #intro #intro-container #bushes, body main #intro #intro-container #bushes {
  width: 100%;
  height: 17%;
  position: absolute;
  bottom: 0%;
  background-image: url("../images/bushes.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  image-rendering: pixelated;
  animation: bushesPan 5s linear forwards;
}
@keyframes bushesPan {
  from {
    background-position: 525% top;
  }
  to {
    background-position: -25% top;
  }
}
html main #intro #intro-container #ninja, body main #intro #intro-container #ninja {
  background-image: url("../images/ninja.gif");
}
html main #intro #intro-container #mount-container, body main #intro #intro-container #mount-container {
  width: 256px;
  position: absolute;
  bottom: 0%;
  z-index: 2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  animation: mountPan 5s linear forwards;
}
html main #intro #intro-container #mount-container #mount, body main #intro #intro-container #mount-container #mount {
  height: 128px;
  width: 256px;
  background-image: url("../images/mount.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  image-rendering: pixelated;
}
html main #intro #intro-container #mount-container #ninja, body main #intro #intro-container #mount-container #ninja {
  height: 256px;
  width: 128px;
  background-image: url("../images/ninja.gif");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  image-rendering: pixelated;
}
@keyframes mountPan {
  from {
    transform: translateX(700%);
  }
  to {
    transform: translateX(100%);
  }
}
html main #skills, body main #skills {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #5c94fc 0%, rgba(48, 0, 110, 0.95) 75%, black 100%);
}
html main #skills #skills-container, body main #skills #skills-container {
  width: 90%;
  height: 90%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}
html main #skills #skills-container #top, html main #skills #skills-container #bottom, body main #skills #skills-container #top, body main #skills #skills-container #bottom {
  width: 100%;
  height: 46px;
  background-image: url("../images/brick.png");
  background-size: contain;
  background-repeat: repeat-x;
  background-size: auto 100%;
  image-rendering: pixelated;
}
html main #skills #skills-container #middle, body main #skills #skills-container #middle {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
html main #skills #skills-container #middle #pillar-left, html main #skills #skills-container #middle #pillar-right, body main #skills #skills-container #middle #pillar-left, body main #skills #skills-container #middle #pillar-right {
  height: 100%;
  flex: 0 0 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  image-rendering: pixelated;
  z-index: 1;
}
html main #skills #skills-container #middle #pillar-left, body main #skills #skills-container #middle #pillar-left {
  background-image: url("../images/pillar-left.png");
}
html main #skills #skills-container #middle #pillar-right, body main #skills #skills-container #middle #pillar-right {
  background-image: url("../images/pillar-right.png");
}
html main #skills #skills-container #middle #middle-content, body main #skills #skills-container #middle #middle-content {
  height: 100%;
  width: calc(100% - 96px);
  flex-shrink: 1;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
html main #skills #skills-container #middle #middle-content #left-half, body main #skills #skills-container #middle #middle-content #left-half {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding: 0px 20px;
  height: 100%;
  width: 45%;
}
html main #skills #skills-container #middle #middle-content #left-half #title, body main #skills #skills-container #middle #middle-content #left-half #title {
  width: 100%;
  font-family: "Diablo", sans-serif;
  font-size: 2rem;
  color: white;
  text-align: center;
  text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;
  margin: 30px 0px;
}
html main #skills #skills-container #middle #middle-content #left-half #content, body main #skills #skills-container #middle #middle-content #left-half #content {
  width: 100%;
}
html main #skills #skills-container #middle #middle-content #left-half #content #tabs, body main #skills #skills-container #middle #middle-content #left-half #content #tabs {
  width: 100%;
  overflow-x: auto;
  border-top: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
html main #skills #skills-container #middle #middle-content #left-half #content #tabs .tab-link, body main #skills #skills-container #middle #middle-content #left-half #content #tabs .tab-link {
  border: 4px ridge grey;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: lightgrey;
  font-family: "Diablo";
  font-size: 0.85rem;
  padding: 4px 12px;
  cursor: pointer;
}
html main #skills #skills-container #middle #middle-content #left-half #content #tabs .tab-link:hover, body main #skills #skills-container #middle #middle-content #left-half #content #tabs .tab-link:hover {
  background-color: #ddd;
}
html main #skills #skills-container #middle #middle-content #left-half #content #tabs .tab-link.active, body main #skills #skills-container #middle #middle-content #left-half #content #tabs .tab-link.active {
  background: linear-gradient(to top, #8c8c8c 0%, white 65%);
  border-bottom: 4px solid #8c8c8c;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid, body main #skills #skills-container #middle #middle-content #left-half #content .grid {
  width: 100%;
  display: none;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px grey;
  border: 4px ridge grey;
  border-top: none;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(4, 1fr);
  background-color: #d3d3d3;
  overflow: auto;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(54, 36, 4, 0.95);
  border: 5px inset lightgrey;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  min-width: 85px;
  min-height: 85px;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  position: relative;
  cursor: pointer;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper img.skill-icon, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper img.skill-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .skill-icon-rank, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .skill-icon-rank {
  position: absolute;
  bottom: 0px;
  right: 0px;
  transform: translate(50%, 50%);
  font-family: "Diablo", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  border: 3px outset lightgrey;
  border-radius: 50%;
  padding: 1px 6px;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .expert, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .expert {
  background-color: purple;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .intermediate, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .intermediate {
  background-color: blue;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .basic, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .basic {
  background-color: green;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .skill-icon-tooltip, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper .skill-icon-tooltip {
  visibility: hidden;
  background-color: white;
  color: rgb(105, 105, 105);
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 1px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  z-index: 1;
}
html main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper:hover .skill-icon-tooltip, body main #skills #skills-container #middle #middle-content #left-half #content .grid .cell .skill-icon-wrapper:hover .skill-icon-tooltip {
  visibility: visible;
}
html main #skills #skills-container #middle #middle-content #left-half #legend, body main #skills #skills-container #middle #middle-content #left-half #legend {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
  flex: 1 1 auto;
}
html main #skills #skills-container #middle #middle-content #left-half #legend p, body main #skills #skills-container #middle #middle-content #left-half #legend p {
  font-family: "Diablo", sans-serif;
  text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;
  color: white;
  font-size: 0.85rem;
}
html main #skills #skills-container #middle #middle-content #left-half #legend p .skill-icon-rank, body main #skills #skills-container #middle #middle-content #left-half #legend p .skill-icon-rank {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  border: 3px outset lightgrey;
  border-radius: 50%;
  padding: 1px 6px;
  text-shadow: none;
}
html main #skills #skills-container #middle #middle-content #left-half #legend p .expert, body main #skills #skills-container #middle #middle-content #left-half #legend p .expert {
  background-color: purple;
}
html main #skills #skills-container #middle #middle-content #left-half #legend p .intermediate, body main #skills #skills-container #middle #middle-content #left-half #legend p .intermediate {
  background-color: blue;
}
html main #skills #skills-container #middle #middle-content #left-half #legend p .basic, body main #skills #skills-container #middle #middle-content #left-half #legend p .basic {
  background-color: green;
}
html main #skills #skills-container #middle #middle-content #right-half, body main #skills #skills-container #middle #middle-content #right-half {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  row-gap: 25px;
  height: 100%;
  flex: 1 1 auto;
  width: 55%;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-top, body main #skills #skills-container #middle #middle-content #right-half #right-half-top {
  width: 100%;
  padding-top: 30px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-top #description, body main #skills #skills-container #middle #middle-content #right-half #right-half-top #description {
  overflow-y: auto;
  min-inline-size: 0;
  border: 3px solid white;
  background-color: #3e2d0f;
  font-family: "Diablo", sans-serif;
  text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;
  color: white;
  margin: 0px 20px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-top #description legend, body main #skills #skills-container #middle #middle-content #right-half #right-half-top #description legend {
  font-size: 1.25rem;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-top #description p, body main #skills #skills-container #middle #middle-content #right-half #right-half-top #description p {
  display: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  line-height: 1.35rem;
  letter-spacing: 1px;
  padding: 10px 5px;
  margin: 0;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom {
  width: 100%;
  padding: 0px 20px 30px 20px;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests {
  margin: 0px 20px;
  border: 3px solid white;
  background-color: #3e2d0f;
  min-inline-size: 0;
  overflow-x: visible;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests legend, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests legend {
  font-family: "Diablo", sans-serif;
  font-size: 1.25rem;
  color: white;
  text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
  height: 100%;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene {
  width: 20%;
  perspective: 1000px;
  perspective-origin: center left;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube {
  position: relative;
  width: var(--face-width);
  height: var(--face-height);
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: rotateY(50deg) rotateX(0deg);
  transition: transform 0.5s;
  left: 0;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .face, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .face {
  position: absolute;
  top: 50%;
  left: 0%;
  transform-origin: center center;
  background: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  backface-visibility: visible;
  border-radius: 10px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front {
  width: var(--face-width);
  height: var(--face-height);
  transform: translate(-50%, -50%) translateZ(calc(var(--face-depth) / 2));
  border: 10px ridge var(--main-color);
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper {
  height: 100%;
  background-color: black;
  backface-visibility: hidden;
  will-change: transform;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-icon, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-icon {
  position: absolute;
  top: -35px;
  left: -55px;
  background-color: white;
  border: 10px ridge var(--main-color);
  border-radius: 25px;
  width: 75px;
  height: 75px;
  z-index: 2;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-title, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-title {
  width: 100%;
  border-bottom: 8px ridge var(--main-color);
  background-color: white;
  backface-visibility: hidden;
  will-change: transform;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-title h3, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-title h3 {
  color: var(--main-color);
  filter: brightness(1.05);
  font-family: "Contra", monospace;
  text-shadow: 1px 1px 1px white, 1px 1px 1px grey;
  font-size: 1rem;
  text-align: right;
  padding: 0px 20px 0px 0px;
  margin: 5px 0px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-description, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-description {
  width: 100%;
  height: 100%;
  overflow: auto;
  backface-visibility: hidden;
  will-change: transform;
  background-color: black;
  color: white;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-description p, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-description p {
  margin: 15px 10px 10px 50px;
  font-family: "Contra", monospace;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 1px;
  line-height: 0.85rem;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links {
  width: 100%;
  border-top: 8px ridge var(--main-color);
  background-color: rgb(223, 223, 223);
  padding: 5px 0px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: flex-start;
  row-gap: 7px;
  backface-visibility: hidden;
  will-change: transform;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links div, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links div {
  color: white;
  font-family: "Contra", monospace;
  font-weight: 200;
  font-size: 0.55rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.95);
  padding-left: 25px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links div a, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links div a {
  pointer-events: none;
  text-decoration: none;
  display: inline-block;
  color: white;
  cursor: pointer;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links div a:hover, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-links div a:hover {
  text-shadow: 1px 1px 3px rgba(0, 3, 180, 0.95);
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs {
  position: absolute;
  bottom: 0px;
  left: 0;
  border: 8px ridge var(--main-color);
  background: linear-gradient(to right, #333333, #333333 55%, #cccccc 98%);
  backface-visibility: hidden;
  will-change: transform;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  transition: left 0.3s ease;
  padding: 0px 5px 5px 0px;
  z-index: -1;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure {
  margin: 10px 5px;
  font-family: "Contra", monospace;
  font-weight: 200;
  font-size: 0.65rem;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 1px rgba(17, 17, 17, 0.95);
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure figcaption, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure figcaption {
  margin-bottom: 7px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure ul, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure ul {
  margin: 5px;
  padding-left: 20px;
  font-family: "Contra", monospace;
  font-weight: 200;
  font-size: 0.55rem;
  color: white;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure ul li, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .front #project-wrapper #project-techs figure ul li {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.95);
  list-style-type: square;
  padding: 2px 0px;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .left, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene .cube .left {
  width: var(--face-depth);
  height: var(--face-height);
  transform: translate(-50%, -50%) rotateY(-90deg) translateZ(calc(var(--face-width) / 2));
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled {
  z-index: 100;
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled .cube, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled .cube {
  transform: translateX(var(--pull-delta-x)) translateY(var(--pull-delta-y)) scale(1.35);
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled .cube .front #project-wrapper #project-description:hover ~ #project-techs, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled .cube .front #project-wrapper #project-description:hover ~ #project-techs {
  left: 100%;
  transform: translateX(0);
}
html main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled .cube .front #project-wrapper #project-links a, body main #skills #skills-container #middle #middle-content #right-half #right-half-bottom #quests #projects-container .scene.pulled .cube .front #project-wrapper #project-links a {
  pointer-events: all;
}
html main #skills #skills-container #middle::before, body main #skills #skills-container #middle::before {
  content: "";
  position: absolute;
  inset: 0 4px 0 4px;
  background-image: linear-gradient(rgba(255, 0, 0, 0.25), rgba(0, 255, 255, 0.2)), url("../images/marble.png");
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1px);
  z-index: 0;
}
html main #contact, body main #contact {
  color: white;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
html main #contact #fairy-cursor, body main #contact #fairy-cursor {
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
}
html main #contact #fairy-cursor img, body main #contact #fairy-cursor img {
  display: none;
  width: 32px;
  height: 64px;
  image-rendering: pixelated;
}
html main #contact #fairy-cursor.active img, body main #contact #fairy-cursor.active img {
  display: block;
}
html main #contact #top, body main #contact #top {
  width: 100%;
  height: 128px;
}
html main #contact #top .horizontal-wall, body main #contact #top .horizontal-wall {
  width: 100%;
  height: 128px;
  background-image: url("../images/stone.png");
  background-size: contain;
  background-repeat: repeat;
  background-size: 64px 64px;
  image-rendering: pixelated;
}
html main #contact #middle, body main #contact #middle {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
html main #contact #middle .vertical-wall, body main #contact #middle .vertical-wall {
  width: 128px;
  height: 100%;
  background-image: url("../images/stone.png");
  background-repeat: repeat;
  background-size: 64px 64px;
  image-rendering: pixelated;
}
html main #contact #middle #middle-content, body main #contact #middle #middle-content {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
html main #contact #middle #middle-content #text-row p, body main #contact #middle #middle-content #text-row p {
  text-align: center;
  font-size: 26px;
  font-family: "Contra", monospace;
  text-transform: uppercase;
}
html main #contact #middle #middle-content #fire-row, body main #contact #middle #middle-content #fire-row {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
html main #contact #middle #middle-content #fire-row #old-man, body main #contact #middle #middle-content #fire-row #old-man {
  width: 105px;
  height: 105px;
}
html main #contact #middle #middle-content #fire-row #fire, body main #contact #middle #middle-content #fire-row #fire {
  width: 75px;
  height: 75px;
}
html main #contact #middle #middle-content #icons-row, body main #contact #middle #middle-content #icons-row {
  width: 80%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
}
html main #contact #middle #middle-content #icons-row img, body main #contact #middle #middle-content #icons-row img {
  width: 50px;
  height: 50px;
  image-rendering: pixelated;
}
html main #contact #middle #middle-content #link-row, body main #contact #middle #middle-content #link-row {
  margin-top: 4rem;
}
html main #contact #middle #middle-content #link-row #link, body main #contact #middle #middle-content #link-row #link {
  width: 65px;
  height: 65px;
}
html main #contact #bottom, body main #contact #bottom {
  width: 100%;
  height: 128px;
  position: relative;
}
html main #contact #bottom .horizontal-wall, body main #contact #bottom .horizontal-wall {
  width: 100%;
  height: 96px;
  background-image: url("../images/stone.png");
  background-size: contain;
  background-repeat: repeat;
  background-size: 64px 64px;
  image-rendering: pixelated;
}
html main #contact #bottom #doorway, body main #contact #bottom #doorway {
  position: absolute;
  width: 224px;
  height: 96px;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: black;
}
html main::-webkit-scrollbar, body main::-webkit-scrollbar {
  display: none;
}
html main.paused .pause-mask, body main.paused .pause-mask {
  filter: brightness(60%);
  opacity: 1;
}
html footer, body footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  text-align: center;
  background-color: rgba(25, 0, 255, 0.5);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: var(--footer-height);
  font-size: 10px;
  font-family: "Contra", monospace;
  text-transform: uppercase;
  border-top: 5px ridge #888;
}
html footer span a, body footer span a {
  color: blue;
  animation: blink 0.5s steps(1, start) infinite;
  text-shadow: 1px 1px 1px rgba(255, 150, 0, 0.95);
  text-decoration: none;
}
html footer span a:hover, body footer span a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0px 0px 5px red;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes flash {
  0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(300%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes background-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: var(--nav-bg-scroll) 0;
  }
}
@keyframes blink {
  0% {
    color: blue;
  }
  50% {
    color: rgba(255, 255, 255, 0.8);
  }
  100% {
    color: blue;
  }
}
@keyframes slide-from-below {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes slide-from-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  25% {
    transform: translateX(10%);
    opacity: 1;
  }
  50% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-from-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  25% {
    transform: translateX(-10%);
    opacity: 1;
  }
  50% {
    transform: translateX(0%);
    opacity: 1;
  }
}

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