@font-face {
    font-family: 'Go Mono';
    src: url('fonts/Go-Mono.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Go';
    src: url('fonts/Go-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    /* font-family: 'Go Mono', monospace; */
    font-family: 'Go', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 2em;
}

p {
    text-align: justify;
    text-justify: inter-word;
}

a {
    color: #005f87;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 1em 0;
}

ul li::before {
    content: "- ";
}

h2 {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

h2::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #000;
    margin-left: 1em;
}

h3 {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table tr:hover {
    background-color: #eee;
}

table td {
    vertical-align: top;

    padding-top: 5px;
    padding-bottom: 5px;
    /* Space between rows */
}

table:not(#about-table) td:last-child {
    text-align: right;
}

table:not(#about-table) td:first-child {
    white-space: wrap;
    width: 99%;
    /* Let the second column take up the remaining space */
}

table:not(#about-table) td:not(:first-child) {
    white-space: nowrap;
    min-width: 32px;
}

.mono {
    font-family: 'Go Mono', monospace;
}

code,
pre {
    font-family: 'Go Mono', monospace;
    background-color: #eee;
    border-radius: 5px;
    padding: 2px 5px;
}

input[type="text"],
select,
textarea {
    font-family: 'Go Mono', monospace;
    font-size: 1rem;
    padding: 0.4em 0.6em;
    border: 1px solid #ccc;
    background-color: #fdfdfd;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
    margin: 1em 0;
}

button,
input[type="submit"] {
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    padding: 0.4em 1em;
    border: 1px solid #333;
    border-radius: 3px;
    background-color: #0080b6;
    color: #fff;
    transition: background-color 0.2s;
}

button:hover,
input[type="submit"]:hover {
    background-color: #333;
}

details summary {
    cursor: pointer;
}

.footer {
    background-color: #555;
    color: #eee;
    text-align: center;
    padding: 10px;
    margin-top: 50px;
}

.footer a {
    color: #00b3ff;
}

.mul.l {
    background-color: #c5edff;
}

.mul.w {
    background-color: #c5ffc6;
}

.mul {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.sub {
    font-size: 0.8em;
    line-height: 1;
}

@media (min-width: 640px) {
    .container {
        max-width: 700px;
    }

    #about {
        display: flex;
        gap: 20px;
    }

    #about .about-cell {
        flex: 1;
        width: 100%;
    }
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}