html{
overflow-x: hidden;
touch-action: manipulation;
}
html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #fff;
  line-height: 17px;
  background: #150C2D;
  text-align: center;
  font-family: "Press Start 2P", cursive;
  padding: 0 10px 10px 10px;
  max-width: 100vw!important;
  max-height: 100vw!important;
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: none;
}

.btn {
  border: solid 4px rgb(255, 255, 255);
  padding: 10px 30px;
  font-weight: 700;
  font-family: "Press Start 2P", cursive;
  color: rgb(255, 255, 255);
  font-size: 0.7rem;
  background: none;
  cursor: pointer;
}

.btn:hover {
  background: rgba(9, 9, 9, 0.3);
}

.menu {
  height: 60px;
  display: flex;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
}

.content {
  position: relative;
}

.screen {
  background-color: #FF0094;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 1.5rem;
  top: 0;
  left: 0;
  z-index: 10;
  margin: 5px;
  display: none;
}

.screen__title {
  background: radial-gradient(
    circle 929px at 0.6% 1.3%,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 0%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 10px;
  margin-top:40px;
  line-height: 70px;
}

.screen__title::after {
  content: "COMING SOON";
  -webkit-text-fill-color: #333232;
  color: red;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: -1; /* Added this */
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  border: solid 6px #ffffff;
}

.controls {
  position: relative;
  top: 60vh;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.btn_secondary {
  border-radius: 50%;
  font-weight: 700;
  padding: 13px;
}

.btn_secondary:hover {
  background: rgb(95, 95, 95);
}

.arrows {
  width: 69%;
  max-width: 220px;
}

.controls__btnLeft {
  position: relative;
  left: 5px;
  top: 60px;
}

.controls__btnRight {
  position: relative;
  left: -5px;
  top: 60px;
}

.controls__btnDown {
  position: relative;
  top: 60px;
}

.start {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-basis: 30%;
  height: 100%;
}

.controls__start {
  position: relative;
  top: -10px;
  transform: rotate(-45deg);
  font-size: 0.5rem;
  border-radius: 5px;
  padding: 5px 15px;
}

/* Disable text selection */
body, .menu, .content, .screen {
  user-select: none;
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For IE10+ */
}

.btn, .btn_secondary, .controls__start {
  cursor: pointer;
}

.btn_new {
  border: solid 4px rgb(255, 255, 255);
  padding: 10px 30px;
  font-weight: 700;
  font-family: "Press Start 2P", cursive;
  color: rgb(255, 255, 255);
  font-size: 0.7rem;
  background: none;
  cursor: pointer;
  margin-top: 20px;
}

.note_text {
  text-decoration: none;
  font-size: 12px;
  max-width: 300px;
  color: #ffffff!;
  line-height: 17px;
  margin-bottom:40px;
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
	color: #ffffff;
}

.btn_new:hover {
  background: rgba(9, 9, 9, 0.3);
}


@media (max-width: 1024px) {
  body,.note_text, h2  {
    font-size: 11px!important;
  }
    h2  {
    padding: 10px;
  }
  .mobilehide {
	display:none!important;  
  }
}
