a {
    color: black;
}

a:hover {
    color: #AE132A;
}

body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    font-size: 1.25rem;
    font-family: "Georgia", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}

article {
    flex-grow: 1;
    background-color: white;
    padding: 0 0px 0 32px;
    display: grid;
    line-height: 1.6;
    text-align: justify;
    /* font-size: 1.5rem; */
    color: #444;
}

article img {
    justify-self: center;
}

img.small {
    height: 128px;
}

img.medium {
    height: 256px;
}

footer {
    border-top: 1px solid #444;
    padding: 15px;
    text-align: center;
}

footer form textarea {
    border: 0;
    border-bottom: 1px solid #444;
    padding: 5px;
    width: 200px;
    line-height: 1.5;
    font-size: 1rem;
    resize: none;
    font-family: "Georgia", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    color: #5C5C5C;
}

footer form textarea:hover {
    color: black;
}

footer form input {
    border: 0;
    border-bottom: 1px solid #444;
    padding: 5px;
    width: 200px;
    line-height: 1.5;
    font-size: 1rem;
    resize: none;
    font-family: "Georgia", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    color: #5C5C5C;
}

footer form input:hover {
    color: black;
}

footer form button {
    width: 150px;
    height: 32px;
    background-color: white;
    border: 1px solid #444;
    font-size: 1rem;
    font-family: "Georgia", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}

footer form button:hover {
    color: #fff;
    background-color: #333333
}

footer form * {
    margin-top: 5px;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}

.links a {
    text-decoration: none;
}

.links a:hover {
    text-decoration: none;
}

.links a.current {
    color: #AE132A;
    text-decoration: none;
}

.logo {
    justify-self: center;
    color: #AE132A;
    font-size: 64px;
    font-family: monospace;
    font-weight: bold;
}

.side-col {
    padding: 32px;
    padding-top: 32px;
    width: max(384px, 5vw);
    font-size: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.separator {
    border-top: 1px solid #444;
}

@media (max-width: 1079px) {
    .side-col {
        display: none;
    }

    article {
        padding: 0 16px;
    }
}

@media (max-width: 639px) {
    body {
        font-size: 1.2rem;
    }

    .links {
        gap: 16px;
    }
}