h2 {

    text-align: center;
}

ul {
    margin-left: 5%;
}

.image-block{
    max-width:700px;
}

#bestPics {
    display:flex;
    width: 75vw;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    gap: 2vw;
    align-self:center;
}

#bestPics > img {
    width: 50%;
    height: auto;
}

#vertPics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    height: auto;
    width: 50%;
    justify-content: space-evenly;
}

#vertPics img {
    width: 100%;
}

.pictures {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2vw;
    justify-content: center;
    align-items: center;
}

.pictures > * {
    flex 1 1 auto;
    margin-bottom: 10px;
}

.pictures .captioned-image{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    max-width: max(25vw, 450px);
}

.caption{
    text-align: center;
    overflow: break-word;
    display: block;
}


.pictures img{
    height: auto;
    max-width: max(25vw, 450px);
}

.code {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.captioned-code{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.captioned-code pre{
    margin: 0;
    margin-top: 7.5px;
}

.captioned-code code{
    padding: 0;
    width: 60vw;
    max-height: 70vw;
    border-radius: 10px;
}

.hljs-ln-numbers{
text-align: right;
    border-right: 1px solid #CCC;
    padding-right: 10px !important;
}

.hljs-ln-code {
    padding-left: 10px !important;
}

.hljs-class {
    color: light-green;
}

#picture-showcase{
    width: 75vw;
}