@media (max-width: 100em) {

    /*30 x 16px= 480px*/
    table {
        width: 100%;
        font-size: .9em;
    }

    table tr {
        display: flex;
        flex-direction: column;
        border: 1px solid grey;
        padding: 1em;
        margin-bottom: 1em;
    }

    table td[data-titulo] {
        display: flex;
    }

    table td[data-titulo]::before {
        content: attr(data-titulo);
        width: 90px;
        color: silver;
        font-weight: bold;
    }

    table td,
    th {
        border: none;
    }

    table thead {
        display: none;
    }
}
canvas {
    width: 500px;
    height: 500px;
    background-color: #0D0909;
}

#paginador {
    display: flex;
    justify-content: center;
  }