@import url("colors.css");

h1 {
    font-family: 'Festive', 'Snell Roundhand', 'Segoe Script', 'Brush Script MT', cursive, bold;
    font-size: 36px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    text-align: center;
    margin-top: 25px; 
    margin-bottom: 25px;
    padding: 0 20px; /* Adds 20px left & right padding */
    color: var(--header-color);
}


body {
    font-family: var(--font-family);
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    min-height: 100vh;
    background-color: var(--body-color);
    color: var(--body-text-color);
    padding-bottom: 60px;
}

footer {
    text-align: center;
    padding: 0rem;
    background: var(--background-color);
    color: var(--text-color);
    position: fixed;
    bottom: 0;
    width: 100%;
}

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

th, td {
    justify-content: center;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: 5px solid black;
}

td img {
	max-width: 75%;
	height: auto;
	margin: auto;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 10px; /* 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;
    border-radius: 12px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--body-color);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}