@font-face {
  font-family: "TypeRight";
  src: url(type_right.ttf);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body {
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url(background.png);
  background-position: unset;
  background-size: cover;
  background-attachment: fixed;
}

.hubBody {
  height: 100vh !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  font-family: "TypeRight";
}

.container {
  animation: fadeIn 1.5s ease-in-out;
}
.container .column {
  display: flex;
  flex-direction: column;
}
.container .row {
  display: flex;
  flex-direction: row;
}

.hub {
  max-width: 960px;
  align-items: center;
}

.clueContainer {
  margin-top: 0px;
  margin-bottom: 60px;
  rotate: -2deg;
  font-size: 24px;
}
.clueContainer .clue {
  color: white;
}
.clueContainer .clue .clueLabel {
  color: dimgray;
  font-size: 16px;
  text-decoration: underline;
}

.puzzleContainer .puzzleTitle {
  color: white;
  font-size: 20px;
  margin: 20px;
  rotate: 2deg;
}
.puzzleContainer .puzzleLink {
  pointer-events: visible;
}
.puzzleContainer .puzzleLink .puzzleImage {
  max-width: 400px;
  border: 1px ridge white;
  rotate: -2deg;
  transition: 0.2s ease-in-out;
}
.puzzleContainer .puzzleLink .puzzleImage:hover {
  transform: translateY(-5px);
}

.btnsContainer {
  justify-content: center;
}
.btnsContainer .giftBtns {
  color: white;
  margin: 30px;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.2s ease-in-out;
}
.btnsContainer .giftBtns:hover {
  transform: scale(1.3);
}
.btnsContainer .disabled {
  color: rgb(60, 60, 60) !important;
  pointer-events: none !important;
}
.btnsContainer .disabled ::after {
  content: url(locked.png);
  width: 12px;
  height: 12px;
}

.backContainer {
  margin-top: 70px;
  rotate: 3deg;
}
.backContainer .back {
  font-size: 20px;
  color: white;
}

.divider {
  width: 200px;
}

.parasiteMessage {
  font-family: "TypeRight";
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  margin: auto;
  height: 100vh;
  max-width: 960px;
}
.parasiteMessage #lines {
  padding: 5px 10px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "TypeRight";
  color: rgb(31, 31, 31);
  font-size: 20px;
  min-height: 2em;
  line-height: 1.6;
  filter: drop-shadow(0 0 8px black);
}
.parasiteMessage #linkContainer a {
  pointer-events: none;
  color: #000000;
  transition: all 2s ease-in-out;
}
.parasiteMessage .enabled a {
  pointer-events: auto !important;
  color: rgb(58, 58, 58) !important;
}
.parasiteMessage a {
  margin-left: auto;
  margin-right: 0;
  float: right;
  font-family: "TypeRight";
  font-size: 24px;
  color: rgb(255, 255, 255);
}
.parasiteMessage a .centered {
  margin: auto !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.parasiteMessage .accentText {
  text-transform: uppercase;
}
.parasiteMessage .stage {
  width: min(88vw, 900px);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* freaking fuckkkkfuckkkfcukkkkk */
  pointer-events: none;
  image-rendering: pixelated;
  mix-blend-mode: normal;
}/*# sourceMappingURL=styles.css.map */