/*Yann Aebischer
12.01.2026
Fait tout ce qui a juste sur matérielle*/
#Matériel {
  /*Montre la page actuel*/
  background-color: #a71414;
}

.section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.images_matériel {
  /*Ajustation image*/
  max-width: 250px;
  height: auto;
  display: block;

}

.titre {
  /*Mettre sous titre en haut de l'image et du texte*/
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.content {
  /*Mettre l'image a cote d'u texte*/
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.text {
  padding: 8px;
}

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

  /*Fait que si on est sur un ecran petit comme un Natel les images sont plus petit*/
  .images_matériel {
    max-width: 100px;
  }
}