@import url('https://fonts.googleapis.com/css2?family=Capriola&family=Outfit:wght@100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
.content{
    padding: 20px;
}
.ligne{
    padding: 50px;
}
.grid{
    display: grid;
    grid-template-columns: 1fr;
    padding: 5dvh 10dvw;
    gap: 80px;
    background-color: #ffffff;
}
@media(min-width: 768px){
    .grid-2-1{
        grid-template-columns: 1fr 1fr;
        gap: 17%;
    }
}
body {
  background-color: #f2f5f3;
  color: #333;
  line-height: 1.7;
}

header {
  background: linear-gradient(135deg, #6fcf97, #56ccf2);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

header h1 {
  font-size: 2.5rem;
}

.light {

  background-color: #ffffff;
}

h2 {
  color: #2f855a;
  margin-bottom: 20px;
}

.images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.images .item {
  text-align: center;
}

.images .item p {
  margin-bottom: 10px;
  font-weight: 600;
}

.images img {
  width: 100%;
  max-width: 250px;
  border-radius: 15px;
}

@media (min-width: 768px) {
  .images {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.green {
  margin: 20px 0;
  padding: 15px;
  background-color: #e6f4ea;
}

footer {
  text-align: center;
  background-color: #2f855a;
  color: white;
  padding: 20px;
  margin-top: 40px;
}
.pub{
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 50px;
}
.pub img{
    width: 100%;
    max-width: 150px;
    border-radius: 5px;
    height: auto;
    max-height: 225px;
    
}

.flèche{
    display: flex;
    justify-content: start;
}
.flèche img{
    width: 40px;
}