body {
    background-color: rgb(255, 215, 235);
    font-family: "Lucida Console", "Courier New", monospace;
}
.wrapper {
    position: relative;
    content: "";
    background-image: url("Assets/siteback2.png");
    background-repeat: no-repeat;
    height: 100%;
    max-width: 900px;
    height: 770px;
    margin: 0 auto;
}
.title {
    transform: translate(170px, 15px);
    position: absolute;
    color: black;
    text-align: center;
    width: 520px;
    height: 105px;
}
.gallnav {
    position: absolute;
    color: black;
    text-align: center;
    width: 155px;
    height: 511px;
    overflow: scroll;
    float: right;
    transform: translate(656px, 160px);
}
.to-dolist {
    font-size: 11px;
    position: absolute;
    color: black;
    text-align: left;
    width: 129px;
    height: 127px;
    overflow: scroll;
    float: right;
    transform: translate(38px, 15px);
}
.main {
    position: absolute;
    color: black;
    text-align: center;
    width: 486px;
    height: 451px;
    overflow-y: scroll;
    overflow-x: visible;
    float: right;
    transform: translate(143px, 173px);
}
.credits {
    font-size: 11px;
    position: absolute;
    transform: translate(180px, 684px);
    height: auto;
    width: auto;
}
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;
}