#globalImageContainer {
    display: flex;
    align-items: center;
}

#description {
    text-align: center;
}

#underImageContainer {
    margin-top: 1%;
}

.writings {
    font-size: 1.4em;
}

#prevLink, #nextLink, #prevLinkMobile, #nextLinkMobile {
    cursor: pointer;
}

#image {
    margin-left: auto;
    margin-right: auto;
    max-height: 75vh;
}

.mobileLinkCol {
    font-size: 3rem;
    padding: 0;
    text-align: center;
}

.descriptionHeader {
    font-size: 1.1em;
}

#showDescription, #showDescriptionMobile {
    cursor: pointer;
}

#descriptionModal .modal-body {
    padding: 5rem;
}

#descriptionModal .modal-content {
    background-color: #e7e7e7;
    color: black;
}

#descriptionModal p {
    text-align: justify;
    column-gap: 5%;
    column-fill: auto;
}

#descriptionModal h3 {
    margin-bottom: 3%;
    margin-top: 0;
}

.closeDescriptionModal {
    font-size: 1.5em;
}

@media (max-width: 768px) {
    #descriptionModal p {
        column-count: 1;
    }

    #description {
        font-size: 1.4rem;
    }

    .mobileShow {
        display: inline-block;
    }

    .desktopShow {
        display: none;
    }

    .centerCol {
        padding-left: 0;
        padding-right: 0;
    }

    #globalImageContainer, #underImageContainer {
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }
}

@media (min-width: 768px) {
    #descriptionModal p {
        column-count: 2;
    }

    .mobileShow {
        display: none;
    }

    .desktopShow {
        display: block;
    }
}