

.section-reconnaissances
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0px 40px 0px;
}

#groupe-reconnaissances
{
    width: 95%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    justify-items: stretch;
}

.section-reconnaissances .photo
{
    border: 2px solid rgb(107, 0, 8);
    border-radius: 15px;
    width: 160px;
    height: 160px;
    overflow: hidden;
    object-fit: cover;
    background-color: goldenrod;
}

.section-reconnaissances img
{
    filter: sepia(0.75);
}

.section-reconnaissances h2
{
    background-color: rgb(107, 0, 8);
    width: 100%;
    color: rgb(225, 225, 255);
    padding: 3px 10px;
}


