.text {
    padding: 100px;
    margin-bottom: 20px;
}

.image {
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
    transition: transform .2s;
}

.image:hover {
    transform: scale(1.1);
}


@media screen and (max-width: 768px) {
    .doc {
        border-bottom-style: groove;
        border-bottom-color: #a5b4fc;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .text {
        padding: 40px;
    }
}

/* main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

h2{
    margin-bottom: 30px;
    
}

p {
    float: inline-end;
    color: white;
    font-weight: 900;
}

.conteneur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px;
    grid-gap: 10px;
}

.sous a {
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 2em;
    color: #a5b4fc;
    text-shadow:black
}

.sous {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.sous:hover {
    justify-content: space-evenly;
}

.sous img {
    margin-bottom: 50px;
    height : 32px;
    width: 32px;
}


.conteneur-1 {
    transition: transform .2s;
    grid-column: 1/2;
    background-image: url(../a-propos/img/apropos/1.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}

.conteneur-2 {
    transition: transform .2s;
    grid-column: 2/3;
    background-image: url(../a-propos/img/apropos/2.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}

.conteneur-3 {
    transition: transform .2s;
    grid-column: 1/3;
    background-image: url(../a-propos/img/apropos/3.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}

.conteneur-4 {
    transition: transform .2s;
    grid-column: 1/3;
    background-image: url(../a-propos/img/apropos/4.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}

.conteneur-5 {
    transition: transform .2s;
    grid-column: 1/2;
    background-image: url(../a-propos/img/apropos/5.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}

.conteneur-6 {
    transition: transform .2s;
    grid-column: 2/3;
    background-image: url(../a-propos/img/apropos/6.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}

.conteneur-1:hover, .conteneur-2:hover, 
.conteneur-3:hover, .conteneur-4:hover, 
.conteneur-5:hover, .conteneur-6:hover {
    transform: scale(1.2);
    border-radius: 30px;
} */