body {
  background-color: rgb(16, 16, 27);
  color: azure;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat, sans-serif", sans-serif;
}
body #playerForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3rem 0;
}
body #playerForm label {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
body #playerForm input[type=text] {
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
body #playerForm button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: rgb(172, 96, 243);
  color: white;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
body #playerForm button:hover {
  background-color: rgb(150, 80, 220);
}
body h1,
body h2 {
  color: rgb(172, 96, 243);
}
body #gameCanvas {
  display: block;
  width: 80vh;
  height: 80vh;
  max-width: 98vw;
  max-height: 98vw;
  position: relative;
}
body #toggle-leaderboard {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
  z-index: 1001;
  padding: 12px 24px;
  font-size: 1.1rem;
  background: #d3b4fc;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
body #toggle-leaderboard:hover {
  background-color: rgb(150, 80, 220);
}
body #leaderboard {
  margin: 3rem 0;
  padding: 1rem;
}
body #touch-arrows {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 150px;
  z-index: 1000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
body #touch-arrows .arrow-btn {
  width: 60px;
  height: 60px;
  margin: 5px;
  font-size: 2rem;
  pointer-events: auto;
  background: rgba(180, 162, 197, 0.445);
}

@media (max-aspect-ratio: 1/1) {
  body #gameCanvas {
    width: 98vw;
    height: 98vw;
    max-width: 98vw;
    max-height: 98vw;
  }
}
@media (max-width: 600px) {
  body #gameCanvas {
    width: 98vw;
    height: 98vw;
  }
  h1 {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=index.css.map */