/* Estilos específicos para la página de juego */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  border: 1px solid white;
}

.game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 250px;
}

.game-instructions {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Press Start 2P", cursive;
  font-size: 14px;
}

.controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.control-key {
  background-color: #333;
  color: white;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  font-family: "Press Start 2P", cursive;
  font-size: 12px;
}

