/* Estilos para html y body */
html,
body {
    width: 100%;
    height: 120%;
    margin: 0;
    padding: 0;
    overflow: auto;
}

/* Estilo para el contendor del juego con fondo y centrar elementos en pantalla */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;


    position: fixed;
    top: 0;
    left: 0;
}

/* Los botones se apilarán verticalmente y se alinearán en la parte superior del contenedor.*/
.button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    vertical-align: top;
    margin: 50px 50px 50px 50px;
    position: fixed;
    top: 0;
    left: 0;

}

.button-container svg {
  filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.8)); 
  fill: white;      
}


/* Estilos para el elemento canvas */
#canvas {
    /* Configuración de la renderización de la imagen */
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;


    /* Estilos de fondo, margen, relleno y posición */
    background: #000000bb;
    margin: 0;
    padding: 0;

    /* Tamaño del lienzo */
    height: 95%;

    
}