:root {
    color-scheme: light dark;
}

body {
    font-family: monospace;
    font-size: 1rem;
    margin: 0;
}

.wrapper {
    width: fit-content;
    margin: 0 auto;

    table {
        margin: 0 auto;
        border-collapse: collapse;

        th, td {
            border: 1px solid white;
            padding: 0 0.5rem;
        }

        tr>td:first-child {
            text-align: center;
        }

        tr>td:last-child {
            text-align: right;
        }
    }
}

