#container {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    /* Reduce if network is too low on the page */
    height: 2000px;
    /* border: 1px solid gray; */
}

#title {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 2.2em;
}


/* MODAL */

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 15;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    max-height: 600px;
    width: 700px;
    overflow-y: scroll;
    font-size: 1.5em;
}

.modal-content ul {
    list-style-type: none;
    padding-left: 2px;
}

.modal-content ul li {
    padding-bottom: 10px;
}

.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}

.close-button:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.citation {
    color: rgb(160, 160, 160);
}

.trope {
    color: rgb(6, 0, 77);
}

.column-header-1 {
    position: absolute;
    top: 90px;
    left: 5%;
    font-size: 2em;
}

.column-header-2 {
    position: absolute;
    top: 25px;
    left: 48%;
    font-size: 2em;
}

.column-header-3 {
    position: absolute;
    top: 90px;
    right: 5%;
    font-size: 2em;
}