.documentation .centered {
    text-align: center;
}
.documentation {
    font-size: 1.5em;
    text-align: justify;
    margin: 0 auto;
    margin-bottom: 100px;
    width: 50%;
    overflow: visible;
}

.documentation li {
    margin-bottom: 0.5em;
}

.documentation p {
    margin-top: 1em;
}

.documentation h1 {
    border: none;
    margin-bottom: 1em;
}

.documentation h2 {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.documentation h6 {
    margin-top: 2em;
}

a.citation:hover ,
ul.citation>li:hover {
    /*border: solid black 1pt !important;*/
    color: white;
    background: #8d8d8d;
}

a.citation ,
ul.citation>li {
    /*border: solid white 1pt !important;*/
    color: black;
    text-decoration: underline;
    /*background-color: grey;*/
    font-weight: bold;
}

div#citation {
    margin-top: 4em;
}


img.dyna_image{
    width: 100%;
    transition: transform .2s; /* Animation */
    display: inline-block;
}

img.dyna_image:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}