body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;

    background-image: 
        repeating-linear-gradient( 0deg, rgba(198, 40, 40, .5) 0px 16px,	transparent 16px 32px),
        repeating-linear-gradient( 90deg, rgba(198, 40, 40, .5) 0px 16px,    transparent 16px 32px);
}

section {
    max-width: 600px;
}

h1 {
    width: fit-content;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid black;
}

table {
    width: 100%;
}

.no_wrap {
    white-space: nowrap;
}

h3 > small {
    font-size: 0.7em;
    font-weight: lighter;
}

h1 {
    text-align: center;
}

td:last-child, th:last-child {
    display: flex;
    justify-content: flex-end;
}

.pig {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.pig > img {
    max-width: 350px;
}