:root {
  --beige: #f0f0dd;
  --background: #1c1117;
  --black: #422835;
  --brown: #a33;
  --dark-olive-green: #473;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6em;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
  font-size: 2em;
  line-height: 1.3;
}

a {
  text-decoration: none;
}

.scene {
  color: var(--beige);
  background-color: #000;
  border: 1px solid #4b4b4b;
  border-radius: 3em;
  justify-content: flex-start;
  align-items: center;
  width: 100em;
  height: 50em;
  display: flex;
  position: relative;
  overflow: scroll;
  box-shadow: 0 2px 20px 6px #85838333;
}

.body {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 8px;
  display: flex;
}

.background {
  z-index: 1;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 898em;
  transition: all .1s linear;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
  transform: translate(0);
}

.background.objects {
  z-index: 4;
}

.ground {
  z-index: 2;
  flex: none;
  max-width: none;
  height: 49%;
  position: relative;
}

.background_color {
  z-index: 1;
  background-color: #1b0801;
  flex: none;
  width: 100%;
  min-width: 100%;
  height: 50%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.sprite {
  z-index: 3;
  backface-visibility: visible;
  transform-style: preserve-3d;
  width: 5em;
  margin-top: 36.5em;
  margin-left: 9.1em;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(0)rotateX(0)rotateY(-180deg)rotateZ(0);
}

.sprite.flip {
  transform: rotate(0);
}

.sprite_move {
  z-index: 1;
  width: 75px;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.sprite_img {
  z-index: 1;
  width: 75px;
  display: block;
  position: relative;
}

.objects {
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.sword {
  z-index: 5;
  width: 5em;
  margin-top: 31.8em;
  margin-left: 134.9em;
  transition: width .1s;
  display: block;
  position: absolute;
  inset: 0% auto auto 0%;
}

.sword.hide {
  width: 0;
}

.sword._2 {
  margin-top: 35.4em;
  margin-left: 261.3em;
}

.sword._3 {
  margin-top: 38.3em;
  margin-left: 387.7em;
}

.sword._4 {
  margin-top: 31.4em;
  margin-left: 525.8em;
}

.tool {
  z-index: 6;
  transform-origin: 0 100%;
  width: 0;
  margin-bottom: .1em;
  margin-left: 1.6em;
  transition: transform 50ms, margin 50ms, width .3s;
  display: block;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
  transform: scale(2)translate(0)rotate(-54deg);
}

.tool.show {
  width: 2em;
}

.tool.show.rotate {
  transform: rotate(-80deg);
}

.chest {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chest_img {
  width: 5em;
  display: block;
}

.chest_img.open {
  display: none;
}

.chest_img.block {
  display: block;
}

.chest_contain {
  z-index: 5;
  justify-content: flex-start;
  align-items: center;
  height: 5em;
  margin-top: 2.3em;
  margin-left: 3.4em;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.chest_items {
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  width: 30em;
  height: 5em;
  margin-left: 2.6em;
  transition: all .15s;
  display: flex;
  position: relative;
  left: -2em;
}

.chest_item {
  background-color: var(--background);
  cursor: pointer;
  object-fit: contain;
  border-radius: 4em;
  width: 3em;
  height: 100%;
  margin-right: 1.2em;
  padding-top: .4em;
  padding-bottom: .4em;
  transition: all .1s;
  display: block;
}

.chest_item:hover {
  background-color: var(--black);
}

.chest_item.selected {
  background-color: var(--brown);
}

.menu_contain {
  z-index: 7;
  justify-content: flex-end;
  align-items: stretch;
  width: 0;
  height: 0;
}

.menu_icon {
  z-index: 7;
  background-color: var(--black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 5em;
  margin-top: 2.3em;
  margin-right: 3.4em;
  transition: all .15s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.menu_icon-img {
  width: 40%;
  display: block;
}

.menu_icon-img.x {
  transition: all .15s;
  display: none;
}

.menu_icon-img.dots {
  display: block;
}

.menu_ui {
  z-index: 6;
  background-color: var(--background);
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: 2em 0% 0%;
}

.char {
  background-color: var(--black);
  text-align: center;
  letter-spacing: .1em;
  border-radius: 2.5em;
  width: 15em;
  margin-left: 1.1em;
  margin-right: 1.1em;
  padding: 3.5em 0;
  font-weight: 500;
  transform: rotate(0);
}

.char.selected {
  background-color: var(--brown);
}

.char_img {
  transform-style: preserve-3d;
  width: 4em;
  margin-bottom: 1.5em;
  margin-left: auto;
  margin-right: auto;
  font-size: 10px;
  display: block;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.bad {
  width: 13em;
  margin-top: 31.5em;
  margin-left: 322em;
  position: absolute;
  inset: 0% auto auto 0%;
}

.bad.flip {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.bad_img {
  width: 100%;
}

.bad_lazer {
  background-color: var(--brown);
  opacity: 0;
  width: 6em;
  height: .9em;
  margin-top: 6.1em;
  margin-left: 8em;
  transition: opacity .2s, margin .6s;
  position: absolute;
  inset: 0% auto auto 0%;
}

.bad_lazer.move {
  opacity: 1;
  margin-left: -50.6em;
}

.bad_contain {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.bad_death {
  width: 70%;
  height: 60%;
  margin-top: 1.7em;
}

.health {
  z-index: 5;
  background-color: var(--background);
  border-radius: 100vw;
  width: 7em;
  height: 1.8em;
  margin-bottom: 2.3em;
  margin-left: 3.4em;
  padding: .4em;
  position: absolute;
  inset: auto auto 0% 0%;
}

.health_fill {
  background-color: var(--dark-olive-green);
  border-radius: 100vw;
  width: 100%;
  max-width: 100%;
  height: 100%;
  transition: all .2s;
}

.health-bad {
  z-index: 5;
  background-color: var(--background);
  border-radius: 100vw;
  width: 7em;
  height: 1.8em;
  margin-top: -3em;
  margin-left: 3.2em;
  padding: .4em;
  position: absolute;
  inset: 0% auto auto 0%;
}

.health-bad_fill {
  background-color: var(--brown);
  border-radius: 100vw;
  width: 100%;
  height: 100%;
  transition: all .2s;
}

.game-over {
  z-index: 20;
  background-color: var(--brown);
  opacity: 0;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 6.2em;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.game-over.show {
  opacity: 1;
  margin-top: 0;
}

.button {
  background-color: var(--black);
  border-radius: 100vw;
  margin-top: 1em;
  padding: 1em 1.9em;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2;
}

.instructions {
  opacity: .62;
  color: #fff;
  text-align: center;
  margin-top: 1.3em;
  padding-left: 8px;
  padding-right: 8px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
}

.lives {
  width: 3.2em;
  margin-top: 39.1em;
  margin-left: 450.9em;
  display: block;
  position: absolute;
  inset: 0% auto auto 0%;
}

.lives._2 {
  margin-top: 37em;
  margin-left: 641.4em;
}

.image {
  width: 150px;
}

.image-2 {
  opacity: .5;
  width: 250px;
  padding-bottom: 25px;
}

.back-link {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.image-31 {
  padding-left: 10px;
  transform: rotate(180deg);
}

.back-text {
  color: #888;
  margin-top: 0;
  font-size: 16px;
}

.menu-item-border {
  background-color: #f9faf7;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
}

.full-screen-menu-items-wrapper {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  transform-origin: 0%;
  background-color: #010101;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100%;
  padding: 50px;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
}

.sm-icon {
  object-fit: cover;
  width: 32px;
  height: auto;
}

.navbar-content-wrapper {
  z-index: 99998;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.full-screen-menu-item-link {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #010101;
  border-bottom: 1px solid #0000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.scramble-text {
  color: #000;
  letter-spacing: 10px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#dfe5d6, #6e848c);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}

.main-button-n-2 {
  border-radius: 10em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  min-height: auto;
  margin-top: 25px;
  padding: 1px;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px #2a3940;
}

.main-button-n-2:hover {
  box-shadow: 0 0 80px #8f292b;
}

.main-button-n-2.navbar {
  z-index: 10;
  box-shadow: none;
  background-color: #0000;
  margin-top: 0;
  position: fixed;
  inset: 25px 25px auto auto;
}

.button-bg {
  z-index: 1;
  background-color: #151515eb;
  border-radius: 10em;
  position: relative;
}

.full-screen-menu-item-icon {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 15px;
  margin-top: -5px;
  display: flex;
  position: relative;
}

.container-default {
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.container-default.container-large {
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 50px;
  padding-right: 50px;
  display: none;
}

.full-screen-menu-inner-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.hamburger-line {
  background-color: #fff;
  width: 40px;
  height: 2px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.hamburger-line.first-line {
  margin-bottom: 7px;
}

.sm-icon-link {
  color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: auto;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .25s;
  display: flex;
}

.sm-icon-link:hover {
  opacity: .8;
}

.menu-item-moving-border {
  color: #f9faf7;
  background-color: #f9faf7;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.button-inside {
  z-index: 2;
  grid-column-gap: .5em;
  opacity: 1;
  color: #dfe5d6;
  letter-spacing: 1px;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-color: #151515;
  background-image: linear-gradient(90deg, #ffffffb3, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  padding: 1rem 1.7rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  position: static;
  inset: 1%;
}

.social-grid {
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-top: 50px;
  position: relative;
}

.social-grid.menu {
  z-index: 500;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  position: absolute;
  inset: auto 0% 0%;
}

.border-gradient {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 12rem;
  position: absolute;
  transform: rotate(-55deg);
}

.full-screen-menu-wrapper {
  z-index: 4;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.hamburger-icon-wrapper {
  z-index: 9999;
  cursor: pointer;
  background-image: linear-gradient(#00000080, #00000080);
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 20px 10px;
  display: flex;
  position: fixed;
  inset: 25px auto auto 50px;
}

.heading-style-h4 {
  color: #010101;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.heading-style-h4.full-screen-menu-item {
  z-index: 2;
  color: #f9faf7;
  padding-top: 8px;
  padding-bottom: 10px;
  position: relative;
}

.text-scramble_component {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  font-weight: 700;
  display: flex;
  position: relative;
}

.full-screen-menu-overlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transform-origin: 100%;
  background-color: #0e252780;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.styles---glowing-button {
  display: none;
}

.game-over-text {
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 12px;
}

@media screen and (min-width: 1280px) {
  .container-default {
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1440px) {
  .container-default {
    max-width: 1320px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h4 {
    font-size: 28px;
  }
}

@media screen and (min-width: 1920px) {
  .image {
    width: 150px;
  }

  .container-default {
    max-width: 1680px;
  }

  .container-default.container-large {
    max-width: 1760px;
  }
}

@media screen and (max-width: 991px) {
  .body {
    font-size: .97vw;
  }

  .sprite_move, .sprite_img {
    width: 50px;
  }

  .instructions {
    font-size: 14px;
    display: none;
  }

  .image {
    width: 100px;
  }

  .sm-icon {
    width: 30px;
  }

  .scramble-text {
    letter-spacing: 5px;
    font-size: 1.5rem;
  }

  .main-button-n-2 {
    border: 1px solid #ffffff80;
  }

  .main-button-n-2.navbar {
    height: auto;
  }

  .container-default {
    max-width: 740px;
  }

  .div-block-14 {
    margin-top: 0;
    margin-left: 0;
    inset: 25px auto auto 25px;
  }

  .sm-icon-link {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    min-height: auto;
    margin-right: 0;
  }

  .social-grid {
    grid-row-gap: 100px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .social-grid.menu {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    padding: 25px 0;
    position: static;
  }

  .full-screen-menu-wrapper {
    display: none;
  }

  .hamburger-icon-wrapper {
    top: 15px;
    left: 25px;
  }

  .heading-style-h4 {
    font-size: 24px;
  }

  .text-scramble_component {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .full-screen-menu-items-wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm-icon {
    width: 26px;
  }

  .scramble-text {
    font-size: 2rem;
  }

  .container-default {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .div-block-14 {
    margin-top: 0;
    margin-left: 0;
  }

  .sm-icon-link {
    min-height: auto;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .social-grid.menu {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    margin-top: 25px;
    padding: 25px 0;
    position: static;
  }

  .full-screen-menu-wrapper {
    display: none;
  }

  .hamburger-icon-wrapper {
    inset: 15px auto auto 25px;
  }

  .text-scramble_component {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .sprite_move, .sprite_img {
    width: 30px;
  }

  .image {
    width: 75px;
  }

  .full-screen-menu-items-wrapper {
    width: 100%;
  }

  .navbar-content-wrapper {
    border-radius: 10px;
  }

  .scramble-text {
    letter-spacing: 2px;
    font-size: 1.5rem;
  }

  .main-button-n-2.navbar {
    z-index: 6;
    top: 15px;
    right: 15px;
  }

  .container-default.menu {
    padding-left: 0;
    padding-right: 0;
  }

  .container-default.container-large {
    padding-left: 25px;
    padding-right: 25px;
  }

  .div-block-14 {
    inset: 15px auto auto 15px;
  }

  .sm-icon-link {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
  }

  .button-inside {
    font-size: .85rem;
  }

  .social-grid {
    grid-column-gap: 30px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .social-grid.menu {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 25px;
  }

  .full-screen-menu-wrapper {
    display: none;
  }

  .hamburger-icon-wrapper {
    left: 15px;
  }

  .heading-style-h4 {
    font-size: 22px;
  }

  .heading-style-h4.full-screen-menu-item {
    flex: none;
    font-size: 24px;
  }

  .text-scramble_component {
    width: auto;
    font-size: 12px;
  }
}

#w-node-_14b7f25a-7cfd-c72f-b379-eacf26e23c55-f5111b70, #w-node-_14b7f25a-7cfd-c72f-b379-eacf26e23c57-f5111b70, #w-node-_14b7f25a-7cfd-c72f-b379-eacf26e23c59-f5111b70, #w-node-_14b7f25a-7cfd-c72f-b379-eacf26e23c5b-f5111b70, #w-node-_14b7f25a-7cfd-c72f-b379-eacf26e23c5d-f5111b70 {
  justify-self: center;
}


