html {
  touch-action: manipulation;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation;
}

body {
  background: #a5060e;
  min-height: 100dvh;
  font-family: "Arial Black", Arial, sans-serif;
  height: 100dvh;
  touch-action: manipulation;
}

/* Pc View Page */
.pc-view-container {
  display: none;
  background: #a5060e;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.pc-view-container .pc-view-copy {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.pc-view-container .pc-view-copy h4 {
  color: #fff !important;
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .pc-view-container {
    display: flex;
  }

  #landingPageScreen {
    display: none !important;
  }
}
