html, body {
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.page-container {
    position: relative;
    width: 100%;
    max-width: 1024px;
    min-height: 100%;
    margin: auto;
    padding-bottom: 80px;
    font-size: 1em;
}

.text {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 1em;
}

.text h1,h2,h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.text h3 {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 0.9em;
}

.links {
    display: inline-block;
    min-width: 256px;
    margin-bottom: 2rem;
}

.links .button-link {
    min-height: 2em;
    font-size: 1.1em;
    gap: 0;
    padding: 0.5em 1em;
    margin-bottom: 8px;
}

.links .button-link:last-child {
    margin-bottom: 0;
}

.links .button-link img {
    width: 2em;
    margin-right: 0.5em;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
}

.links .button-link span {
    flex-grow: 1;
}

.image.about {
    border: 4px solid black;
    width: 100%;
    margin-bottom: 16px;
}

.image.logo {
    margin-bottom: 16px;
}

.table-about {
    background-color: #fff;
}

.table-about th {
    white-space: nowrap;
}

.table-about td {
    vertical-align: middle;
}

.table-about td.full {
    width: 80%;
}

.table-about td img {
    display: block;
    margin: 8px;
    margin-left: auto;
    margin-right: auto;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    transform: scale(3);
}

.table .thead-blue th {
    color: #fff;
    background-color: #7f96b4;
    border-color: #546a87;
}

@media (min-width: 1000px) {
    .text {
        font-size: 1.3em;
    }
}

@media (max-width: 640px) {
    .text h3 {
        margin-top: 0.3rem;
    }

    .links {
        width: 100%;
        min-width: auto;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .links .button-link {
        justify-content: center;
        width: 100%;
        min-height: 43px;
        padding: 0.3em 0.7em;
        flex-wrap: nowrap;
        font-size: 1em;
        margin-bottom: 4px;
    }
}

@media (max-width: 360px) {
    .text {
        font-size: 0.8em;
    }

    .links img {
        width: 1.5em;
        margin-right: 0.25em;
    }
}

@media (min-width: 256px) and (max-width: 640px) {
    .links span {
        position: relative;
        left: -1em;
    }
}