/*photo collage*/
.photo-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    justify-content: center;
}
.collage-image {
    height: 20em;
    object-fit: cover;
    cursor: pointer; /* Makes the pointer appear as a clickable hand */
    max-width: 100vw;
}
.collage-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 0.2em; 
}