.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

#photos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.photo {
    width: 200px;
    margin: 20px;
    cursor: pointer;
}

@media only screen and (max-width: 500px) {
    .photo {
        width: 40vw;
        margin: 5vw;
        cursor: pointer;
    }
}