.header2 > img{
    display: block;
    margin: 0 auto;
    padding: 0;
    top : 0;
    z-index: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
}
.presentation{
    display: flex;
    flex-direction: column;
}
.presentation > h1{
    text-align: center;
    font-size: 110%;
    color: rgb(89,20,17);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.presentation>div{
    display: flex;
    flex-direction: row;
}

.presentation>div>img{
    margin: 30px;
    width: 50%;
    height: 50%;
}
.presentation>div>div{
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.signature{
    display: contents;
    justify-content: right;
}

body {
    font-size: 100%;
    background-color: rgb(246,246,246);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.gite{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgb(89,20,17);
}
  .gite > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5%;
  }

  .gite > div > img {
    width: 350px;
    margin: 10px;
  }
.texte_venise{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}
.texte_venise > *{
    margin: 1%;
}
.texte_venise > h6{
    font-size: 110%;
}
.texte_venise > p{
    font-size: 90%;
}
.image_venise{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2%;
}

.image_venise > img{
    width: 300px; /* Largeur fixe pour les éléments */
    margin: 10px;
}

.aggrandissement{
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.aggrandissement:hover{
    transform: scale(1.3);
}

@media screen and (min-width: 1100px){
    .presentation>div>img{
        margin: 30px;
        width: 500px;
    }
}

@media screen and (max-width: 950px){
    .presentation>div{
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }
}