.center {
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5px;
}

.url_input {
    min-width: 400px;
}

#promoImage {
    max-width: 100%; /*600px;*/
}

#overline {
    color: rgb(79, 128, 255);
}

.promoImageText {
    font-style: italic;
    margin: 0;
    text-align: center;
}

#promoImageCredit {
    color: rgb(153, 175, 194);
}

#subHeadline {
    font-weight: bold;
}

.authorsDiv {
    display: flex;
    justify-content: space-between;
}

.authorName {
    padding-left: 2px;
}

.authorRole {
    padding-left: 2px;
    padding-right: 2px;
    font-size: smaller;
}

.authorRole::before {
    content: " ("
}

.authorRole::after {
    content: ")"
}

.authorImg {
    max-width: 100px;
}

.content {
    max-width: 600px;
    background-color: #293845;
    color: white;
    padding: 10px 25px;
    display: none;
}

body {
    background-color: #0f151a;
}

.url_div {
    background-color: #293845;
    padding: 10px 25px;
    color: white;
    text-align: center;
}

.quote {
    text-align: center;
    font-style: italic;
}

.quote p {
    font-size: x-large;
}

p {
    font-family: "Source Serif Pro", Noto-adjusted-for-Source, Palatino, "Droid Serif", Times-New-Roman-adjusted-for-Source, serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 26px;
}

.missing {
    color: rebeccapurple;
}

.contentImgCaption {
}

.contentImgCredit {
    color: rgb(153, 175, 194);
    padding-left: 1px;
}

.contentImg {
    max-width: 100%; /*600px;*/
}

.contentImgP {
    font-style: italic;
    text-align: center;
    margin: 0;
}

a {
    color: rgb(79, 128, 255);
}

.galleryHeadline {
    margin-bottom: 5px;
}

.location {
    font-weight: bold;
    padding-right: 5px;
}

#loader {
    border: 16px solid white;
    border-radius: 50%;
    border-top: 16px solid rgb(79, 128, 255);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 50px auto 30px;
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}