body.showroom {
    overflow:hidden;
}

#gallery {
    margin: 0 auto;
    display:flex;
    flex-wrap:wrap;
}
#gallery img {
    width: 200px;
    cursor:pointer;
}

#showRoom {
    display:none;
    position: fixed;
    top:0;
    left:0;
    right:0;
    margin: auto;
    background:rgba(245, 245, 245, 90%);
    max-width:80%;
    max-width: 100%;
    height: 100%;
    z-index: 20;
}

.showRoomHeader {
    text-align: center;
    display: inline;
}

.showRoomHeader h4 {
    margin-top: 3em;
}

#showRoom.active {
    display:block;
}

#closeGallery {
    cursor:pointer;
}

.showroom #closeGallery {
    display: block;
}

#showRoomPicture {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
}