/* Edward Tufte Style */
/* Principles: Maximize data-ink ratio, erase non-data-ink, serif typography, cream background */

@import url('https://fonts.googleapis.com/css2?family=ET+Book:ital,wght@0,400;0,700;1,400&display=swap');

body {
    background-color: #fffff8;
    color: #111;
    font-family: 'ET Book', 'Bembo', 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    /* Context for footer */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-align: left;
    border-bottom: 1px solid #111;
    /* Clean divider */
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
}

.header-logo {
    height: 1em;
    width: auto;
    margin-right: 1.5rem;
}

.slogan {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-top: 0;
    margin-bottom: 3rem;
    text-align: left;
}

.mech-display {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center the image as figure */
    margin: 2rem 0;
    /* No borders or shadows - pure data */
}

#mech-image {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    display: block;
    mix-blend-mode: multiply;
    /* If images have white bg, this helps blend. If transparent png, it's fine. */
}

/* Footer as sidenotes or bottom matter */
.site-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.footer-left,
.footer-right {
    white-space: nowrap;
}