html {
    height: 100%;
    background-color: #000;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;    /* Helps prevent extra body margin issues */
    overflow: hidden; /* Hides scroll bars */
    color: white;
}

/* center the canvas vert/horiz */
canvas {
    display: block; /* Ensures the canvas behaves as expected within the flex container */
}


table {
    width: auto;
    height: min-content;
    table-layout: auto;
    border-collapse: collapse;
}

td {
    width: auto;
    height: auto;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
