
body {
  background: #1b0031;
  color: white;
  font-family: sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.game-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

canvas {
  background: url('fondo_piquito.jpg') no-repeat center center;
  background-size: cover;
  border: 3px solid #fff;
  border-radius: 8px;
  width: 90vw;
  max-width: 960px;
  height: auto;
  aspect-ratio: 4 / 1;
}

p {
  margin-top: 20px;
  font-size: 1.2rem;
}
