* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #032e06;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  height: 100px;
  align-items: center;
}

.hero {
  background: linear-gradient(to right, #038b37, #016417);
  color: white;
  padding: 80px 40px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  text-align: center;
}

.hero p {
  font-size: 1.2em;
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  padding: 40px;
}

section p{
  text-align: center;
}

p {
  margin-top: 20px;
}

.box {
  background-color: rgb(175, 175, 175);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  display: flex;
  flex-flow: column;
  align-items: center;
  border: 3px solid rgb(16, 37, 0);
  gap: 1rem;
  border-radius: 1rem;
}

.temoignage {
  text-decoration: none;
  color: #ebfff3;
  font-weight: 700;
}

.temoignage:hover {
  transform: rotate(360deg);
}

.box img {
  height: 360px;
  border-radius: 1rem;
}

.box video {
  height: 300px;
}

.box:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 900px) {
  .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;

    .box img {
      height: 200px;
    }
    
    .box video{
      height: 175px;
    }
  }
}
