body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #faf8f6;
  color: #333;
}

section {
  width: 100%;
  padding-bottom: 45px;
}

.categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 0px;
}

a{
  color: black;
  text-decoration: none;
  transition: color .3s;
  margin-left: 30px;
}

a:hover{
  color:cadetblue;
  margin-left: 60px;
}

h1 {
  font-size: 60px;
  margin-bottom: 20px;
  margin-left: 30px;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

/* Couleurs pastel par section */
#horizons { 
  background-color: #FFF5F2; 
}
#traces { 
  background-color: #E4EEF0; 
}
#paysages { 
  background-color: #F8F2FF;
}
#details { 
  background-color: #FFFEF0;
}
#corps { 
  background-color: #F2FBFF;
}

.galerie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.galerie img {
  width: 200px;
  border-radius: 10px;
  transition: transform 0.6s ease, opacity 0.6 ease;
}

img:hover{
  transform: scale(1.15);
  opacity: 1;
}  

.legende{
font-size: 0.7em;
margin-top: 5px;
text-align: center;
}

.logo-insta{
  width: 90px;
  height: auto;
  margin-right: 8px;
}

.logo-linkedin{
  width: 90px;
  height: auto;
  margin-right: 8px;
}

.logo-cd{
  width: 300px;
  height: auto;
  margin-right: 8px;
}

.logos{
  display : flex;
  align-items: center;
  gap: 5px;
  justify-content: auto;
  margin-top: 10px;
}

.texte{
  margin-left: 30px;
  max-width: 1000px;
}
.texte b{
  color:cadetblue;
}

@media only screen and (max-width: 768px) {

h1{
  font-size:2.5em;
}
.galerie div{
  flex-basis: 90%;
}

.galerie div img{
  width: 100%;
  height: auto;
}

}







