body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}

.gallery {
    display: flex;
    /* gap: 15px; */
    margin-left: 10px;
	margin-top: 10px;
}

.thumbnail {
    width: 80px;
	height: 80px;
	border-radius: 50%;
	border: solid 2px #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.popup-content {
    text-align: center;
		
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
    border-radius: 10px;
}

.popup-caption {
    color: white;
    margin-top: 15px;
    font-size: 18px;
    font-style: italic;
	font-weight: 600;
}
