*{
    margin:0;
    padding:0;
    text-decoration: none;
    list-style: none;
}


html, body {
    height: 100%;
    font-family: 'Poppins';
  }

.int{
    background-color: #fffaf5;
    border-color: #a84855;
    border-width: 20px;
    border-style:solid;
}

.navbar{
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    box-sizing: border-box; 
    background-color: pink;
    font-weight: bold;
}

.navbar a{
    color:white;
}

.navbar .accueil{
    font-size:2em;
}


.navbar .navlinks ul{
    display:flex;
}

.navbar .navlinks ul li{
    margin: 0 20px;
}

.premier{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    flex-direction: column;
    justify-content: space-evenly;
}

.premier .fond img{
    height: 40vh;
    filter:opacity(50%);
    position:absolute;
    top:197px;
    right:20px;
}

.contact .fond img{
    height: 40vh;
    filter:opacity(50%);
    position:absolute;
    bottom:20px;
    right:20px;
}

.about{
    position:relative;
    display: flex;
    width:100%;
    justify-content: center;
}

.about img{
    height: 30vh;
}

.abouttxt{
    width: 50%;
}

.abouttxt p{
    margin: 0 20px;
    text-align:justify;
}

.deuxieme{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    align-items: center;
    flex-direction: row;
}

.deuxieme img{
height: 60vh;
}

.left {
    position:relative;
    display: flex;
    width:50%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    border-right-color: lightgray;
    border-right-width: 2px;
    border-right-style:solid;
    border-left-color: lightgray;
    border-left-width: 2px;
    border-left-style:solid;
}

.right{
    display: flex;
    width:50%;
    flex-direction:column;
    align-items: center;
    text-align: justify;
}

.left img{
    height: 30vh;
    border-radius: 0;
    transition: border-radius 1s;
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.left img:hover {
    border-radius: 50px;
}

.right h1{
    color:#2b5a5a;
    font-size: 5em;
    font-weight:bolder;
}

.right p{
    display: flex;
    width:90%;
}

.troisieme{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    align-items: center;
    flex-direction: row-reverse;
}

.troisieme img{
height: 70vh;
}

.quatrieme{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    align-items: center;
    flex-direction: row;
}



.cinquieme{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    align-items: center;
    flex-direction: row-reverse;
}

.cinquieme img{
height: 70vh;
}

.sixieme{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    align-items: center;
    flex-direction: row;
}

.septieme{
    display: inline-flex;
    height:60%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom-color: lightgray;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    align-items: center;
    flex-direction: row-reverse;
}

.septieme img{
height: 70vh;
}

.contact{
    display: inline-flex;
    height:100%;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
    flex-direction: row;
}

.contact .cont_left h1{
    margin: 0 20px;
    color:#2b5a5a;
    font-size: 3em;
    font-weight:bolder;
    text-align: left;
    border-bottom-color: lightgrey;
    border-bottom-width: 2px;
    border-bottom-style:solid;
    transition: background-color 1s;
    border-radius: 50px;
     
}

.cont_left h1:hover {
    background-color: #2b5a5a;
    border-radius: 50px;
    overflow: hidden;
}

.cont_left {
    position:relative;
    display: flex;
    width:50%;
    height: 100%;
    flex-direction: column;
    align-items: left;
}

.cont_right{
    display: flex;
    width:%;
    flex-direction:column;
    align-items: center;
    text-align: justify;
}

.cont_right h1{
    color:#2b5a5a;
    font-size: 3em;
    font-weight:bolder;
}

.cont_right p{
    display: flex;
    width:60%;
}

.void{
    height:21.2em;
}
    
@media only screen and (max-width: 600px) {
    /* Styles pour les écrans de largeur maximale de 600px */
    .premier, .deuxieme, .troisieme, .quatrieme, .cinquieme, .sixieme, .septieme {
        flex-direction: column; /* Passer à une disposition en colonnes */
    }
