body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.photo-collage {
    display: flex;
    flex-direction: column;
    width: 3000px; 
    align-items: center;/* Adjust the width as needed */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.small-photo {
    width: 50%; /* Adjust the width for the smaller photo as needed */
    display: block;
    margin: 0;
    padding: 0;
}

.large-photo {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.photo-collage img:not(:last-child) {
    margin-bottom: 0px; /* Adjust the spacing between photos as needed */
}
