.div-breeding-welcome {
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(249, 237, 245);
}

.div-text-breeding-welcome{
    width: 60%;
    padding : 40px 80px;
    display: flex;
    flex-direction: column;
        font-size: 1rem;
        font-family:'Roboto', Arial, sans-serif;
    
}
.div-photo-breeding-welcome{
    width: 40%;
    padding: 20px;
    z-index: 1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.div-photo-breeding-welcome img {
    width: 100%;
    height: 100%;
    flex-shrink: 1; 
    /* autorise l'image à rétrécir dans le flex container */
    object-fit: cover;
    display: block; /*évite les espaces indésirables sous l'image*/
    
}

.div-text-breeding-welcome h1{

    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px; 
    color: rgb(31, 31, 31);
}
.div-text-breeding-welcome h2{
    font-size: 1.2rem;

    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: rgb(31, 31, 31);
}
.div-text-breeding-welcome p{
    line-height: 2;
    margin: 40px 0 20px 0;

    font-size: 1rem;
    font-weight:600;
    letter-spacing: 1px; 
    color: rgb(31, 31, 31);
 }
 .bold{

    font-weight: bolder ;
 }

 @media only all and (min-width:1px) and (max-width:900px){

.div-breeding-welcome {
    max-width:100vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(249, 237, 245);
}

.div-text-breeding-welcome{
    width: 100%;
    padding : 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family:'Roboto', Arial, sans-serif;
    
}
.div-photo-breeding-welcome{
    width: 100%;
    padding:0 20px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


}