body {
    background-color: #000000;
    font-family: "Courier", serif;
    font-smooth: never;
}

.container {
    max-width: 980px;
    /* width: 900px; */
    margin: 0 auto;
    text-align: center;
}

.box {
    text-align: left;
    background: #111111;
    border-color: slategrey;
    border-width: 2px;
    border-radius: 4px;
    color: #ededed;
    padding: 10px 15px;
    margin: 5px;
}

#content-column {
    max-width: 940px;
    vertical-align: baseline;
}
#sidebar-column {
    max-width: 280px;
    min-width: 100px;
    vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    color: #ffffff;
}

.essay-image {
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.header-logo {
    max-width: 100%;
}

.essay-header {
    text-align: center;
}

.image-alt {
    font-size: 12px;
    text-align: center;
}

.footnote-link {
    font-size: 0.8rem;
}

a {
    color: #777;
}

.footnotes {
    font-size: 0.8rem;
}

.hovertext {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.hovertext .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.hovertext:hover .tooltiptext {
    visibility: visible;
}