| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- background-color: #1a1a1a;
- font-family: 'Courier New', monospace;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- color: white;
- }
- .game-container {
- text-align: center;
- background-color: #2a2a2a;
- padding: 20px;
- border-radius: 10px;
- box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
- }
- #gameCanvas {
- border: 2px solid #444;
- image-rendering: pixelated;
- image-rendering: -moz-crisp-edges;
- image-rendering: crisp-edges;
- cursor: pointer;
- }
- .controls {
- margin-top: 15px;
- font-size: 12px;
- color: #ccc;
- }
- .controls p {
- margin: 0;
- }
- /* Estilos para las letras */
- .lyrics-container {
- position: absolute;
- bottom: 10px;
- left: 50%;
- transform: translateX(-50%);
- text-align: center;
- font-family: 'CustomFont', Arial, sans-serif;
- color: white;
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
- z-index: 1000;
- }
- /* Responsive design */
- @media (max-width: 400px) {
- .game-container {
- padding: 10px;
- }
-
- #gameCanvas {
- width: 100%;
- max-width: 320px;
- height: auto;
- }
- }
|