/* -------------- General -------------- */
@font-face {
  font-family: "PPNeue Montreal Regular";
  src: url("/font/PPNeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
}

:root {
  --Black: #121212;
  --Grey: #1f1f1f;
  --LightGrey: #a6a6a6;
  --White: #ffffff;
  --Accent: #3a9cf2;

  --text-size-0: clamp(0.8rem, 5vw + 0.5rem, 1.2vw);
  --text-size-1: clamp(1rem, 5vw + 0.5rem, 1.5vw);
  --text-size-2: clamp(1.25rem, 5vw + 0.5rem, 2.5vw);
  --text-size-3: clamp(1.5rem, 5vw + 0.5rem, 3.5vw);
  --text-size-4: clamp(2.5rem, 5vw + 0.5rem, 2.5vw);
  --text-size-5: clamp(3rem, 5vw + 0.5rem, 4vw);
  --text-size-6: clamp(3.5rem, 5vw + 0.5rem, 4.5vw);
  --text-size-SubTitle: clamp(2rem, 8vw + 0.5rem, 4.5vw);
  --text-size-Title: clamp(4rem, 8vw + 0.5rem, 9vw);
}

@media (max-width: 850px) {
  :root {
    --text-size-1: clamp(0.8rem, 5vw + 0.5rem, 1.2vw);
    --text-size-3: clamp(1rem, 5vw + 0.5rem, 3vw);
    --text-size-SubTitle: clamp(1.8rem, 8vw + 0.5rem, 4vw);
    --text-size-Title: clamp(3rem, 8vw + 0.5rem, 7vw);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: start;
  font-family: "PPNeue Montreal Regular", monospace;
}

body {
  background: #000000;
  cursor: none;
  position: relative;
  overflow-x: hidden;
  box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.9);
  overscroll-behavior: none;
}

/* Grille cyberpunk en perspective */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, 0.08) 25%, rgba(0, 255, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.08) 75%, rgba(0, 255, 255, 0.08) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(0, 255, 255, 0.08) 25%, rgba(0, 255, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.08) 75%, rgba(0, 255, 255, 0.08) 76%, transparent 77%, transparent);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
  transform: perspective(600px) rotateX(65deg);
  transform-origin: center bottom;
  opacity: 0.4;
}

/* Scanlines effet */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    transparent 1px,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 3px
  );
  opacity: 0.1;
  animation: scanlines 8s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

/* Particules cyberpunk */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite, pulse 3s ease-in-out infinite;
}

.particle:nth-child(3n) {
  background: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7),
              0 0 24px rgba(0, 255, 255, 0.3);
}

.particle:nth-child(3n+1) {
  background: rgba(255, 0, 255, 0.6);
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.7),
              0 0 24px rgba(255, 0, 255, 0.3);
}

.particle:nth-child(3n+2) {
  background: rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.7),
              0 0 24px rgba(138, 43, 226, 0.3);
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--White);
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

/* -------------- Curseur -------------- */

.cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 20;
  mix-blend-mode: difference;
}

.cursor {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-follower {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid white;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.3s, transform 0.3s;
}

.hoverable {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------- Loader -------------- */

.conteneur-triangles {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  animation-timing-function: ease-in-out;
}

.triangle-haut-gauche {
  top: 0;
  left: 0;
  border-top: 100vh solid #000000;
  border-right: 100vw solid transparent;
  transform-origin: bottom left;
}

.triangle-bas-droite {
  bottom: 0;
  right: 0;
  border-bottom: 100vh solid #000000;
  border-left: 100vw solid transparent;
  transform-origin: top right;
}

@keyframes splitTriangleHaut {
  0% {
    transform: none;
  }
  100% {
    transform: translate(-100vw, -100vh);
  }
}

@keyframes splitTriangleBas {
  0% {
    transform: none;
  }
  100% {
    transform: translate(100vw, 100vh);
  }
}

.logo-bp, .logo-gris {
  position: absolute;
  width: 11vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  pointer-events: none;
}

.logo-bp {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 2s ease-in-out;
}

/* -------------- Stage -------------- */

.stage {
  position: fixed;
  top: 3vh;
  left: 3vh;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 1vh 2vh;
  border-radius: 1.2vh;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stage:hover {
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.3),
              0 0 48px rgba(0, 255, 255, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.rond {
  background: radial-gradient(circle, rgba(0, 255, 255, 1), rgba(0, 255, 255, 0.6));
  width: 2vh;
  height: 2vh;
  margin-right: 2vh;
  border-radius: 50%;
  animation: blink 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6),
              0 0 20px rgba(0, 255, 255, 0.3);
}

@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6),
                0 0 20px rgba(0, 255, 255, 0.3);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.4),
                0 0 12px rgba(0, 255, 255, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6),
                0 0 20px rgba(0, 255, 255, 0.3);
  }
}

.stage div :nth-child(1) {
  color: var(--LightGrey);
}

.stage div :nth-child(2) {
  color: var(--White);
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.15);
}

/* -------------- Infos -------------- */

.infos {
  position: fixed;
  top: 3vh;
  right: 3vh;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}

.infos a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.8vh 2vh;
  border-radius: 1.2vh;
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.infos a:hover {
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.3),
              0 0 48px rgba(0, 255, 255, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.linkedin-logo, .telecharger-icone {
  width: 24px;
  height: 24px;
  margin-right: 0.5vw;
}

/* -------------- Animation -------------- */

.hidden {
  transform: translateY(1rem);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  filter: blur(0.1rem);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

/* -------------- Nav -------------- */

.nav {
  position: fixed;
  right: clamp(10px, 2vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.nav-dot {
  display: block;
  width: clamp(8px, 1.5vw, 12px);
  height: clamp(8px, 1.5vw, 12px);
  margin: clamp(6px, 1vw, 10px);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.8), rgba(58, 156, 242, 0.8));
  opacity: 0.3;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 255, 255, 0);
}

.nav-dot:hover {
  opacity: 0.8;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4),
              0 0 18px rgba(0, 255, 255, 0.2);
  transform: scale(1.2);
}

.nav-dot.active {
  opacity: 1;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.6),
              0 0 24px rgba(0, 255, 255, 0.3);
}

/* -------------- 3D -------------- */

.floating-object {
  position: fixed;
  top: 50%;
  left: 50%;
  transition: transform 0.7s ease-in-out;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.1))
          drop-shadow(0 0 35px rgba(255, 0, 255, 0.06));
  animation: glow3D 4s ease-in-out infinite;
}

@keyframes glow3D {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.1))
            drop-shadow(0 0 35px rgba(255, 0, 255, 0.06));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.12))
            drop-shadow(0 0 40px rgba(255, 0, 255, 0.08));
  }
}

/* -------------- Welcome -------------- */

.Welcome {
  flex-direction: column;
  z-index: -1;
}

.Welcome p {
  position: absolute;
  bottom: 5vh;
  color: var(--LightGrey);
  font-size: var(--text-size-1);
}

/* -------------- Presentation -------------- */

.Presentation {
  display: flex;
  width: 100%;
  height: 100vh;
}

.Presentation div {
  width: 38vw;
}

.Presentation div:nth-child(2) {
  width: 62vw;
  flex-direction: column;
  text-align: center;
}

.Presentation div:nth-child(2) img {
  width: 48%;
  filter: brightness(50%);
  margin: 0 10% 0 0;
  opacity: 0;
  transition: opacity 2s ease;
}

.Presentation div:nth-child(2) h2 {
  font-size: var(--text-size-0);
  margin: 0 12% 0 8%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease, transform 2.5s ease;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.15),
               0 0 16px rgba(0, 255, 255, 0.1);
}

/* -------------- Compétences -------------- */

.competences-cercle {
  z-index: 2;
  position: relative;
  width: 80vw;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vh;
}

.competence {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  transform-origin: center center;
  transition: opacity 0.6s ease;
}

/* Classe visible avec animation */
.competence.visible {
  opacity: 1;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
}
}

/* Délai progressif */
.competence:nth-child(1).visible { animation-delay: 0.3s; }
.competence:nth-child(2).visible { animation-delay: 1.1s; }
.competence:nth-child(3).visible { animation-delay: 1.9s; }
.competence:nth-child(4).visible { animation-delay: 2.7s; }
.competence:nth-child(5).visible { animation-delay: 3.5s; }
.competence:nth-child(6).visible { animation-delay: 4.3s; }
.competence:nth-child(7).visible { animation-delay: 5.1s; }
.competence:nth-child(8).visible { animation-delay: 5.9s; }
.competence:nth-child(9).visible { animation-delay: 6.7s; }
.competence:nth-child(10).visible { animation-delay: 7.5s; }
.competence:nth-child(11).visible { animation-delay: 8.3s; }
.competence:nth-child(12).visible { animation-delay: 9.1s; }
.competence:nth-child(13).visible { animation-delay: 9.9s; }
.competence:nth-child(14).visible { animation-delay: 10.7s; }

.competence p {
  text-align: center;
  color: var(--LightGrey);
}

.competence:nth-child(1) {
  transform: rotate(0deg) translateX(300px) rotate(0deg);
}
.competence:nth-child(2) {
  transform: rotate(25.7deg) translateX(300px) rotate(-25.7deg);
}
.competence:nth-child(3) {
  transform: rotate(51.4deg) translateX(300px) rotate(-51.4deg);
}
.competence:nth-child(4) {
  transform: rotate(77.1deg) translateX(300px) rotate(-77.1deg);
}
.competence:nth-child(5) {
  transform: rotate(102.8deg) translateX(300px) rotate(-102.8deg);
}
.competence:nth-child(6) {
  transform: rotate(128.5deg) translateX(300px) rotate(-128.5deg);
}
.competence:nth-child(7) {
  transform: rotate(154.2deg) translateX(300px) rotate(-154.2deg);
}
.competence:nth-child(8) {
  transform: rotate(180deg) translateX(300px) rotate(-180deg);
}
.competence:nth-child(9) {
  transform: rotate(205.7deg) translateX(300px) rotate(-205.7deg);
}
.competence:nth-child(10) {
  transform: rotate(231.4deg) translateX(300px) rotate(-231.4deg);
}
.competence:nth-child(11) {
  transform: rotate(257.1deg) translateX(300px) rotate(-257.1deg);
}
.competence:nth-child(12) {
  transform: rotate(282.8deg) translateX(300px) rotate(-282.8deg);
}
.competence:nth-child(13) {
  transform: rotate(308.5deg) translateX(300px) rotate(-308.5deg);
}
.competence:nth-child(14) {
  transform: rotate(334.2deg) translateX(300px) rotate(-334.2deg);
}

.cercle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(to right, var(--Accent) var(--pourcentage), var(--Grey) var(--pourcentage));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--White);
  transition: transform 0.3s ease;
}

.cercle:hover {
  transform: scale(1.1);
}

/* -------------- Réalisation -------------- */

.projectContainer,.projectContainer2 {
  width: 90vw;
  margin: 0 5vw;
  height: 100vh;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  color: var(--White);
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.projectContainer .project:nth-child(1) {
	grid-area: 2/1/3/2;
}
.projectContainer .project:nth-child(2) {
	grid-area: 1/2/2/3
}
.projectContainer .project:nth-child(3) {
	grid-area: 1/3/2/4;
}
.projectContainer .project:nth-child(4) {
	grid-area: 2/4/3/5;
}
.projectContainer2 .project:nth-child(1) {
	grid-area: 2/1/3/2;
}
.projectContainer2 .project:nth-child(2) {
	grid-area: 3/2/4/3;
}
.projectContainer2 .project:nth-child(3) {
	grid-area: 3/3/4/4;
}
.projectContainer2 .project:nth-child(4) {
	grid-area: 2/4/3/5;
}

.project img {
  place-self: center;
  width: 20vw;
  transition: transform 0.3s ease-in-out;
}

.project img:hover {
  transform: translateY(-5px);
  filter: brightness(0.7);
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.tech-icons {
  position: absolute;
  bottom: 15px;
  right: 10px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tech-icons i {
  font-size: 1.8em;
  color: var(--White);
}

.image-wrapper:hover .tech-icons {
  opacity: 1;
}

/* -------------- Formulaire -------------- */

.vide {
  width: 40vw;
}

form {
  width: 55vw;
  max-width: 720px;
}

.input {
  width: 100%;
  margin: 0 0 3vh 10%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px 2px;
  border: none;
  color: white;
  background-color: transparent;
  font-size: var(--text-size-0);
  transition: border-color 0.3s;
  outline: none;
}

hr.line {
  width: 0;
  height: 1px;
  background-color: var(--LightGrey);
  border: none;
  transition: width 0.8s ease;
}

form.visible hr.line {
  width: 100%;
}

input[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  margin-left: 10%;
  font-size: var(--text-size-0);
  text-align: center;
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--LightGrey);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

input[type="submit"]:hover {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: white;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2),
              0 0 24px rgba(0, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.g-recaptcha {
  display: flex;
  justify-content: left;
  margin: 20px 0 20px 10%;
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: left center;
    margin-left: 5%;
  }
}

.dark-captcha {
  filter: invert(85%) hue-rotate(180deg);
  -webkit-filter: invert(85%) hue-rotate(180deg);
  -moz-filter: invert(85%) hue-rotate(180deg);
  -o-filter: invert(85%) hue-rotate(180deg);
  -ms-filter: invert(85%) hue-rotate(180deg);
}

/* -------------- Footer -------------- */

footer {
  position: absolute;
  bottom: 0;
}

footer p {
  font-size: var(--text-size-0);
  color: var(--White);
  margin-bottom: 3vh;
}

/* -------------- Adaptation mobile -------------- */

@media (max-width: 768px) {

  .logo-bp, .logo-gris {
    width: 22vw;
  }

  .infos {
    right: 1vh;
  }

  .infos a {
    font-size: 0.7rem;
  }

  .stage {
    left: 1vh;
  }

  .stage p {
    font-size: 0.8rem;
  }

  /* -------------- Presentation -------------- */

  .Presentation {
    flex-direction: column;
  }

  .Presentation div:nth-child(2) {
    width: 80vw;
    margin-bottom: 32vh;
  }

  .Presentation div:nth-child(2) img {
    width: 50%;
    margin: 0 4% 0 0;
  }

  .Presentation div:nth-child(2) h2 {
    margin: 0;
  }


  /* -------------- Compétences -------------- */

  .competences-cercle {
    height: 78%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
    grid-gap: 0 50vw;
  }

  .competence {
    position: relative;
    width: 100%;
    transform: none !important;
    margin: 0;
  }

  .cercle {
    font-size: 1.5rem;
  }

  /* -------------- Réalisations -------------- */

  .projectContainer {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(2, 1fr);
    top: 10vh;
  }

  .projectContainer2 {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(2, 1fr);
    bottom: 10vh;
  }

  .projectContainer .project:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .projectContainer .project:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .projectContainer .project:nth-child(3) {
    grid-area: 2/1/3/2;
  }
  .projectContainer .project:nth-child(4) {
    grid-area: 2/2/3/3;
  }
  .projectContainer2 .project:nth-child(1) {
    grid-area: 3/1/4/2;
  }
  .projectContainer2 .project:nth-child(2) {
    grid-area: 4/1/5/2;
  }
  .projectContainer2 .project:nth-child(3) {
    grid-area: 3/2/4/3;
  }
  .projectContainer2 .project:nth-child(4) {
    grid-area: 4/2/5/3;
  }

  .project img {
    width: 40vw;
  }

  .tech-icons i {
    font-size: 1.2em;
  }

  /* -------------- Formulaire -------------- */

  form {
    width: 68vw;
    margin-top: 28vh;
  }

  .vide {
    display: none;
  }

  .input {
    margin: 0 0 3vh 0;
  }

  input[type="submit"] {
    margin-left: 0;
  }
}

@media (max-width: 550px) {

  /* -------------- Presentation -------------- */

  .Presentation div:nth-child(2) img {
    width: 65%;
  }

}