* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    font-family: 'Courier New', monospace;
    color: #ffffff;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

canvas {
    display: block;
    margin: 0 auto;
    border: 2px solid #FFB347;
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.5);
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;  /* Mantiene aspect ratio sin distorsión */
}
