.library-image {
    display: block;
    margin: auto;
    height: auto;
    max-height: 400px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    object-position: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 1%;
    padding-left: 1%;
}

.bunny-image {
    display: flexbox;
    object-fit: contain;
    overflow: hidden;
}

.span-box {
    display: flex;
    flex-direction: column;
    flex: 100%;
    width: 100%;
    max-height: 200px;
    max-width: 1200px;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-y: scroll;
}

.span-box-c {
    display: flex;
    /* flex-direction: column; */
    flex: 50%;
    width: 100%;
    max-height: 800px;
    padding-bottom: 50px;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent;
}

.col {
    display: flex;
    flex-direction: column;
    flex: 100%;
    width: 100%;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: scroll;
    /* background: transparent; */
}

.table-updates {
    display: flex;
    flex-direction: column;
    flex: 60%;
    width: 45%;
    max-height: 400px;
    font-size: 30px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 8%;
    margin-left: 8%;
    margin-bottom: 5%;
}

.col-updates {
    display: flex;
    flex-direction: column;
    flex: 60%;
    width: 60%;
    max-height: 400px;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: url("images/updates_desktop.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.col-image {
    display: flex;
    flex-direction: column;
    flex: 40%;
    width: 40%;
    max-height: 400px;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    align-self: right;
}

.table-docs {
    display: block;
    flex-direction: column;
    flex: 100%;
    width: 100%;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 20px;
}

.table-docs-mobile {
    display: none;
    flex-direction: column;
    flex: 100%;
    width: 100%;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 20px;
}

.table-cells {
    padding-left: 5px;
    padding-right: 5px;
}

.table-cells-cover-art {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 15%;
}

.table-cells-title {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 25%;
}

.table-cells-desc {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 45%;
}

.table-cells-link {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 15%;

}

.cover-art {
    max-width: 100%;
    max-height: 250px;
    flex: 100%;
    width: auto;
    display: inline-flexbox;
    object-fit:fill;
    overflow:auto;
}

@media screen and (max-width: 600px) {
    .span-box-c {
        flex-direction: column;
        max-height: none;
    }

    .col {
        width: 100%;
    }

    .col-updates {
        background-image: url("images/updates_mobile.png");
        width: 100%;
        max-height: none;
    }

    .table-docs {
        display: none;
    }

    .table-docs-mobile {
        display: block;
        border-collapse: collapse;
    }

    .table-cells-cover-art {
        padding-top: 5px;
    }

    .col-image {
        width: 100%;
    }
}