html {
  touch-action: manipulation;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation;
}

body {
  background: linear-gradient(180deg, #0e1f53 0%, #1d4522 100%);
  min-height: 100dvh;
  font-family: "Arial Black", Arial, sans-serif;
  height: 100dvh;
  touch-action: manipulation;
}

/* Pc View Page */
.pc-view-container {
  display: none;
  background: #f6ba2b;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.pc-view-container img {
  width: 32vw;
  max-width: 18rem;
}

/* .bounceQR {
  width: 22vw !important;
  margin-bottom: 5vh;
  max-width: 16rem;
} */

.pc-view-container .pc-view-copy {
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.pc-view-container .pc-view-copy h4 {
  color: #ffffff !important;
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .pc-view-container {
    display: flex;
  }

  #landingPageScreen {
    display: none;
  }

  #packSelectionScreen {
    display: none;
  }

  #instructionScreen {
    display: none;
  }

  #howToPlayScreen {
    display: none;
  }

  #game-container {
    display: none;
  }

  #formScreen {
    display: none;
  }
}
