body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  margin: 0;
  background-color: #000;
  padding: 0;
  font-family: 'Press Start 2P', cursive;
}

#gyroButton {
  display: none;
}

* {
   touch-action: pan-y
 }

#gameCanvas {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

#gameOverBanner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  text-align: center;
  display: none; /* Hide the banner initially */
}

#restartButton {
  background-color: white;
  color: black;
  padding: 10px;
  cursor: pointer;
  text-align: center;
}

.title {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

.titles {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.kitze {
  color: white;
  font-size: 9px;
  margin-bottom: 10px;
  text-decoration: none !important;
}
#gameContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  color: #fff;
}

#controls > div {
  margin-bottom: 30px;
}


canvas {
  border: 1px solid #9c9c9c;

}

#controls {
  margin-top: 10px;
  color: #fff;
}

.touchArea {
  position: fixed;
  width: 50%;
  height: 50%;
  border: 1px solid yellow;
  opacity: 0;
  pointer-events: none;
}

#touchAreaUp {
  top: 0;
  left: 0;
}

#touchAreaDown {
  bottom: 0;
  left: 0;
}

#touchAreaLeft {
  top: 0;
  right: 0;
}

#touchAreaRight {
  bottom: 0;
  right: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#showHighScoresButton {
}
