body {
  background-color: #e2e8f0;
  font-family: 'Press Start 2P';
  text-align: center;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: black;
}

button {
  background-color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  border-color: transparent;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
}

#canvas-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

canvas {
  display: block;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

#mobile-controls {
  display: none;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 10px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

#mobile-controls button {
  font-size: 40px;
}

#options {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

#footer {
  font-size: 0.6em;
  margin-top: 30px;
  padding: 0 1em;
}

.movement-controls, .action-controls {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5em;
  }

  #mobile-controls {
    display: flex;
  }

  #controls-text {
    display: none;
  }
}
