/* styles.css */
* {
  box-sizing: border-box;
}

/* ********************* */
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.hyperlien-mail {
  font-style: normal;
  color: aliceblue;
  margin-bottom: 10rem;
}
h1 {
  display: block;
  font-size: 6.2rem;
  text-align: center;
  margin-bottom: 2rem;

  width: 60%;
  line-height: 5rem;

  /* white-space: nowrap; */
}
.TITLE {
  display: block;

  margin: auto 0;
  text-align: center;
  font-style: normal;
  justify-content: center;
  justify-self: center;
  justify-items: center;
  text-transform: center;
  line-height: 7rem;
  font-size: 5rem;
  margin-bottom: 25rem;
  margin-top: 5rem;
}
.SUBTITLE {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 5rem;
  margin-top: -35rem;
}

h2 {
  display: flex;
  text-align: center;
  margin-bottom: 3rem;
  flex-direction: column;
}
form {
  display: flex;
  flex-direction: column;
  width: 40rem;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #1f1f1f;
  border-radius: 5rem;
  border: none;
  color: white;
}

.btn-envoyez {
  margin-bottom: 5rem;
  background-color: black;
  color: white;
  margin: 0 auto;
  padding: 2rem;
  text-decoration: none;
  border-radius: 5rem;
  border: none;
  justify-self: center;
  width: 20rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  border: 0.2rem solid white;
}

.btn-envoyez:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.contact-section {
  position: relative; /* Permet de positionner les éléments à l'intérieur de la section */
  padding: 2rem; /* Marge intérieure pour distancer le texte de l'image */
}
.background-image {
  position: absolute; /* Position absolue pour placer l'image derrière le texte */
  top: 0;
  left: 0;
  width: 100%; /* Prend la largeur de la section */
  height: 120%; /* Prend la hauteur de la section */ /* Chemin vers votre image */
  background-size: 80%; /* Ajuste la taille de l'image pour couvrir toute la section */
  background-position: center; /* Centre l'image */
  opacity: 0.6; /* Réglez l'opacité de l'image selon vos besoins */
  z-index: -1; /* Place l'image en arrière-plan derrière le texte */
}
.contact-section {
  padding-top: 60rem;
  padding-bottom: 80rem;
}

.footer1 {
  margin-top: -30rem;
}
