* {
  box-sizing: border-box;
}

body {
  height: 100dvh;
  overflow: hidden;
  background-color: #F3F2E2;
  margin: 0;
  padding: 0;
}
body main {
  display: flex;
  position: relative;
  justify-content: end;
}
body main .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
body main .image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: path("M0,0 Q600,0 750,200 C900,400 850,600 600,750 Q300,900 0,800 Z");
          clip-path: path("M0,0 Q600,0 750,200 C900,400 850,600 600,750 Q300,900 0,800 Z");
}
body main .conteneur-texte {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
}
body main .texte1 {
  top: 3%;
  position: absolute;
  left: -200px;
  animation: entree-texte 0.8s ease-out 0.5s forwards;
}
@keyframes entree-texte {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(220px);
  }
}
body main .texte2 {
  position: absolute;
  top: 8%;
  left: -200px;
  color: transparent;
  -webkit-text-stroke: 2px black;
  animation: entree-texte2 0.8s ease-out 0.5s forwards;
}
@keyframes entree-texte2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(260px);
  }
}
body main .conteneur-nuage {
  position: relative;
  width: 100vw;
  height: 100vh;
}
body main .nuage {
  width: 40vw;
  height: auto;
  position: absolute;
  top: 30%;
  left: -750px;
  animation: entree-nuage 0.8s ease-out 0.5s forwards;
}
@keyframes entree-nuage {
  from {
    transform: translateX(0);
    opacity: 0;
  }
  to {
    transform: translateX(600px);
    opacity: 1;
  }
}
body main .nuage2 {
  width: 35vw;
  height: auto;
  position: absolute;
  top: 18%;
  left: -1300px;
  animation: entree-nuage2 1s ease-out 0.5s forwards;
}
@keyframes entree-nuage2 {
  from {
    transform: translateX(0);
    opacity: 0;
  }
  to {
    transform: translateX(750px);
    opacity: 1;
  }
}
body main #contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 15dvw;
}
body main #contact h2 {
  font-size: 5rem;
  background-image: linear-gradient(to bottom, transparent 70%, #26301D);
  letter-spacing: 2px;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 100%;
  margin-bottom: 30px;
}
body main #contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main #contact input[type=text],
body main #contact input[type=email],
body main #contact textarea {
  background-color: #F3F2E2;
  width: 500px;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  border: none;
  border-bottom: 2px solid #BBA490;
  font-size: 1.5rem;
}
body main #contact input[type=text]:focus,
body main #contact input[type=email]:focus,
body main #contact textarea:focus {
  outline: none;
}
body main #contact input[type=submit] {
  background-color: #BBA490;
  height: 55px;
  width: 240px;
  border: none;
  font-size: 1.5rem;
  border-radius: 8px;
  margin-top: 6vh;
  cursor: pointer;
}

@media (max-width: 768px) {
  body main {
    width: 100%;
    position: relative;
  }
  body main .conteneur-texte .texte1, body main .conteneur-texte .texte2 {
    display: none;
  }
  body main .nuage, body main .nuage2 {
    display: none;
  }
  body main .image {
    display: none;
  }
  body main #contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
  }
  body main #contact h2 {
    font-size: 3.5rem;
  }
  body main #contact input[type=text],
  body main #contact input[type=email],
  body main #contact textarea {
    width: 290px;
    padding: 8px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=contact.css.map */