table {
    width: 60%;
    margin: auto;
    border: 0.1vw dotted black;
    border-collapse: collapse;
    background-image: url("../images/newspapertexture.jpg");
}

td {
    padding: 4px;
    border: 0.1vw dotted black;
}
.gallery-header {
    background-color: rgba(157, 157, 157, 0.2);
    border-top: 0.14vw dotted black;
    padding-top: 4px;
    margin-bottom: 8px;
    margin-top: 2.5em;
}
.gallery-subtitle {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.greenhouse {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.portrait-gallery {
    display: block;
    margin: 24px 0px;
    border-left: none;
    border-right: none;
}

.portrait-gallery > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.portrait {
    width: 100px;
    margin: 8px;
}

.portrait img {
    background-color: bisque;
    width: 100%;
    border: 4px outset grey;
}

.portrait {
    transition: transform 0.25s;
}

.portrait:hover {
    transform: scale(1.25);
}

.innerbox {
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}