h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2em;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    text-align: center;
    font-size: 36px;
    margin-top: 50px; 
    margin-bottom: 50px;
    color: #333; /* Adjust color as needed */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

table {
    width: 100%; /* Adjust width as needed */
    border-collapse: collapse;
    margin-top: 20px; /* Space between header and table */
    /* margin-left: auto;
    margin-right: auto; */
}

th, td {
    /* display: flex; */
    justify-content: center;
    /* border: 1px solid #ccc; */
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: 5px solid black;
}

td img {
	max-width: 75%;
	height: auto;
	/* display: block; */
	margin: auto;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between rows */ 
}

.row {
    display: flex;
    justify-content: center; /* Centers images */
    gap: 10px; /* Space between images */
}

.photo {
    width: 45%; /* Adjusts width for better spacing */
    position: relative;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    /* padding: 10px; */ 
}