.welcome-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: 60%;
    width: 60%;
    max-height: 400px;
    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: 65%;
    max-height: 400px;
    font-size: 25px;
    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;
}

@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-updates {
        margin-top: 15%;
        margin-left: 15%;
    }

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