<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Pokémon Red Clone</title><style>body { | |
margin: 0; | |
padding: 0; | |
background-color: #000; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
overflow: hidden; | |
} | |
#game-container { | |
width: 100%; | |
max-width: 800px; | |
height: 100%; | |
max-height: 600px; | |
}</style><script defer="defer" src="bundle.js"></script></head><body><div id="game-container"></div></body></html> |