/*
    Description : style css de marque
    Auteur      : Noa Berrier
    Date        : 16.01.2026
*/
.container1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
h2 {
  border-style: solid;
  background-color: #969696;
  color: black;
}
.container2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-left: 100px;
  margin-right: 100px;
}
.container4 {
  display: flex;
  flex-direction: column;
}
img {
  width: 250px;
  height: 200px;
}
@media screen and (max-width: 780px) {
  .container2 {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 100px;
  }
}
