@charset "UTF-8";

.photo_Gallery{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width:1000px;
    margin: 0 auto;
    margin-top: 60px;
}
    .photo_Gallery li{
        display: block;
        width: 200px;
        height: 200px;
        overflow: hidden;
        margin: 10px;
    }
    .photo_Gallery li a img {
        width: 100%;
        height: 100%;
        transition-duration: 0.3s;
    }
    .photo_Gallery li a img:hover {
        transform: scale(1.1);
        transition-duration: 0.3s;
    }
@media (max-width:639px) {
    .photo_Gallery li{
        width: 28%;
        height: auto;
        margin: 2%;
    }
}