body {
  background: #fff9f5;
  color: #000000;
  font-family: Gill Sans;
  font-size: 15pt;
  font-weight: normal;
  opacity: 1; /* attention : 0.1 rendrait tout le contenu très pâle */
  text-align: center;
  width: 70%;
  min-width: 200px;
	margin-right: auto;
	margin-left: auto;
}

article {
  color: #000000;
  font-family: Gill Sans;
  font-size: 15pt;
  font-weight: normal;
  opacity: 1;
  margin: 14pt 2.5%;
  text-align: justify;
}

intro {
  color: #000000;
  font-family: Gill Sans;
  font-size: 14pt;
  font-weight: normal;
  opacity: 1;
  margin: 14pt 2.5%;
  text-align: center;
}

a {
  color: #000000;
  font-family: Gill Sans;
  font-size: 15pt;
  font-weight: normal;
  opacity: 1;
}

p {
  color: #000000;
  font-size: 35pt;
  font-family: Gill Sans;
  opacity: 1;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

po {
  color: #000000;
  font-size: 24pt;
  font-family: Gill Sans;
  opacity: 1;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

h1 {
  font-family: Gill Sans;
  font-size: 28pt;
  font-style: normal;
  font-weight: normal;
  color: #000000;
  opacity: 1;
  text-align: left;
  margin: 15pt 2.5%;
	scroll-margin-top: 70px;
}

.navbar {
  padding: 15px;
  position: fixed;
  background-color: #ffe5c7;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  backdrop-filter: blur(3px); /* optionnel */
  z-index: 1000;
}


.navbar a {
  color: #000000;
  font-family: Gill Sans;
  background-color: #ffe5c7;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding: 5px 10px;   /* padding horizontal un peu plus large pour desktop */
  display: inline-block;
}


.navbar a:hover::after {
  content: '';
  display: block;
  height: 2px;
  background: #000;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}


@media screen and (max-width: 600px) {
    body {
        width: 95%;      
        font-size: 13pt;
        padding: 10px;  
    }
    
	.navbar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;       /* scroll horizontal si vraiment trop long */
  }

  .navbar a {
    font-size: 6px;        /* plus petit sur mobile */
    padding: 4px 6px;       /* padding réduit */
    flex-shrink: 1;         /* autorise le rétrécissement pour tenir sur une ligne */
    min-width: 50px;        /* largeur minimale pour lisibilité */
  }

}

@media screen and (max-width: 600px) {
    H1 {
        font-size: 20pt;
    }

    article {
        font-size: 13pt; 
        margin: 10px 2.5%;
    }
    
	a {
        font-size: 13pt; 
        margin: 10px 2.5%;
    }

    p {
        font-size: 24pt;  
        padding: 70px 0;
    }
}


img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto; 
    float: none;      
}

.img2 {
        float: right; 
        max-width:250px;
        width:100%;
        height:auto;
        margin: 20px;
}


@media screen and (max-width: 600px) {

    img {
        float: right; 
        width: 350px;
        margin: 15px;
    }
    
    .img2 {
        float: right; 
        width: 100px;
        margin: 15px;
    }
}
