body {
    background-color: black;
    font-family: "Lucida Console", "Courier New", monospace;
}
.wrapper {
    position: relative;
    height: 656px;
    width: 867px;
    margin: auto;
    border: 1px solid white;
}
.title {
    position: absolute;
    color: white;
    text-align: center;
    border: 1px solid white;
    width: 645px;
    height: 52px;
}
.gallnav {
    position: absolute;
    color: white;
    text-align: center;
    border: 1px solid white;
    width: 219px;
    height: 328px;
    overflow: scroll;
    float: right;
    transform: translate(646px, 0px);
}
.stampsX3 {
    position: absolute;
    color: white;
    text-align: center;
    border: 1px solid white;
    width: 219px;
    height: 325px;
    overflow: scroll;
    float: right;
    transform: translate(646px, 329px);
}
.main {
    position: absolute;
    color: white;
    text-align: center;
    border: 1px solid white;
    width: 645px;
    height: 602px;
    overflow-y: scroll;
    overflow-x: visible;
    float: right;
    transform: translate(0px, 52px);
}
title {
    text-align: center;
    font-family: "Lucida Console", "Courier New", monospace;
}
.thumbnail-container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between thumbnails */
}

.thumbnail {
    cursor: pointer;
    border: soldid white 1px;
    overflow: hidden;
}

.thumbnail img {
    width: 100px; /* Thumbnail width */
    height: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay .full-image {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
