body,
p,
h1 {
    /* background-color: rgb(248, 247, 244); */
}

nav {
    max-width: 950px;
    /* outline: 1px lightgray solid; */
}

.ExhibitTitle {
    font-weight: bold;
}

.conthead {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 3em;
    width: 100%;
    text-shadow: 2px 2px rgb(230, 220, 220);
}

.contents {
    list-style-type: none;
    flex-wrap: wrap;
    display: grid;
    /* grid-column: 20px 20px;
    grid-auto-columns: auto; */
    /* margin-top: 20px; */
    /* padding: 0; */
    width: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    background-color: transparent;
    position: relative;
}

.banner {
    background-color: rgb(30, 33, 202);
    color: white;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.naver,
.contents div a {
    display: block;
    height: .4in;
    width: 1.25in;
    margin-top: 10px;
    color: #000000;
    font-weight: bold;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 15px;
    text-decoration: none;
    border-bottom: 1px solid brown;
    border-radius: 15px;
    background-color: rgb(241, 215, 172);
    margin-left: 20px;
    /* transform: skew(-15deg, 5deg); */
    /* transform: skew(-2deg, 2deg);  */
    box-shadow: 4px 3px gray;
}

/* .contents div + div {
    margin-left: 20px;
} */

.naver:hover,
.contents div a:hover {
    background-color: orange;
    color: white;
    transition: background-color 500ms linear;
    position: relative;
    top: 5px;
    left: 5px;
}

nav {
    /* background-color: rgb(245, 239, 180); */
    /* display: grid; */
}

/* .nav-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-columns: [full-start] minmax(1em, 1fr) [main-start] minmax(0, 40em) [main-end] minmax(1em, 1fr) [full-end]; 
} */

/* .remodelDiv {
    border-radius: 5px;
    border: 2px solid black;
    width: 200px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 0;
    float: left;
}

.remodelNotice {
    color: white;
    background-color: rgb(30, 33, 202);
    font-weight: 900;
    font-size: 2em;
} */

/* https://css-tricks.com/snippets/css/complete-guide-grid/ */

.pix {
    display: grid;
    /* background-color: rgb(243, 210, 210); */
    color: darkgreen;
    /* grid-template-columns: minmax(300px, 500px) repeat(auto-fill, 200px) 20%; */
    grid-template-columns: repeat(auto-fill, minmax(100px, 200px));
    gap: 2em;
    grid-template-rows: masonry;
    /* grid-template-rows: auto; */
    border: maroon;
    box-shadow: 5px 5px 5px 5px rgb(224, 221, 221);
    border-radius: 1em;
}

.work {
    /* background-color: rgb(244, 248, 205); */
    color: rgb(27, 24, 24);
    border: inset blue 2px;
    border: inset rgb(99, 95, 95) 4px;
    border-radius: 1em;
    padding: 10px;
    justify-content: center;
    display: grid;
    grid-template-rows: auto 2em;
}

.work-image {
    grid-area: image;
    grid-row: 1;
}

.work img,
.work-image img {
    /* grid-area: image;
    grid-row: 1; */
    box-shadow: 3px 3px darkgray;
    border: 1px solid darkgray;
    border-radius: 5px;
}

.img-max {
    max-width: 100vw;

.work-caption {
    grid-area: caption;
    text-align: center;
    grid-row: 2;
}