.accueil-introduction {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
  margin: auto;
}

.accueil-introduction h1 {
  margin-bottom: 15px;
}

.accueil-introduction p {
  margin-bottom: 30px;
}

.accueil-introduction div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 80px;
}

.accueil-introduction img {
  height: 400px;
  width: auto;
}

.accueil-photos {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 0px 4px gray;
  margin: 8px;
  padding: 8px;
}

.accueil-photos div {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
}

.section-contact h2 {
  color: #a5b4fc;
  text-align: center;
  margin-bottom: 50px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: auto;
  color: white;
}

.form-nom-email {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input,
textarea {
  padding: 15px;
  border-radius: 3px;
  border: none;
}

label {
  margin-bottom: 10px;
}

input[type='submit'] {
  width: 200px;
  margin: auto;
  margin-top: 30px;
}


@media screen and (max-width: 996px) {
  .accueil-introduction {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .accueil-introduction div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    margin-left: 0px;
  }

  .accueil-photos {
    padding: 20px;
  }

  .accueil-photos div {
    display: flex;
    flex-direction: column;
  }

  .accueil-introduction img,
  .accueil-photos img {
    height: 400px;
    width: auto;
  }

  .form-nom-email {
    display: flex;
    flex-direction: column;
    gap: 0;
  } 
}