.conteneur{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    min-width: 80%;
}
.photos{
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 30px;
    padding: 10px;
    max-width: 30%;
    overflow: hidden;
    min-width: 25%;
    
}
.photos img{
    border: 3px solid #000;
    width: 100%;
    height: 400px;
    transition: all 1s ease;
}
.photos img:hover{
    transform: scale(1.05);
    opacity: 0.7;
}
.photos .texte{
    padding: 20px;
    width: 100%;
    font-size: 1.2em;
}
.content-inside{
    margin: 0;
    padding: 0;
}


/* photo and container collumn on tablet media query */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .photos{
        max-width: 45%;
        
    }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
    .photos{
        max-width: 100%;
    }
    .content-inside{
        margin: 10px;
    }
}  

