body {
    max-width: 10in;
    margin: 72px auto;
    counter-reset: table-counter;
}

h3 {font-size: 1.5rem;}

table-container {overflow-x: auto;}

table {
    counter-increment: table-counter;
}

table > caption::before{ 
    content: "Table " counter(table-counter) ". ";
    font-weight: bold;
}

caption {
    caption-side: top;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    body {
        margin: 72px 1rem;
    }
}