body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #e6e3e0;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  overflow: hidden;

  max-width: 1000px;
  margin: 80px auto;
  padding: 60px 80px;

  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* image décorative */
.container::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: -3px;
  width: 460px;

  background: url("/flytothemoon.png") left center / auto 100% no-repeat;
  opacity: 0.92;

  /* fondu élégant vers le blanc */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 28%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.18) 78%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 28%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.18) 78%,
    rgba(0, 0, 0, 0) 100%
  );

  z-index: 0;
  pointer-events: none;
}

/* voile doux pour fondre davantage l'image dans le blanc,
   surtout vers le haut et vers le centre */
.container::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 22% 28%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.55) 30%,
      rgba(255, 255, 255, 0.88) 52%,
      rgba(255, 255, 255, 0) 68%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.1) 18%,
      rgba(255, 255, 255, 0.45) 36%,
      rgba(255, 255, 255, 0.82) 52%,
      rgba(255, 255, 255, 1) 68%
    );

  z-index: 1;
  pointer-events: none;
}

/* texte toujours au premier plan */
.container > * {
  position: relative;
  z-index: 2;
}

h1 {
  color: #6a7a6c;
  font-weight: 500;
  font-size: 2em;
  line-height: 1.15;
  margin: 0 0 34px 72px;
}

p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 22px 72px;
  color: #222;
  max-width: 1100px;
}

strong {
  color: #1f1f1f;
  font-weight: 700;
}

.footer {
  margin-top: 40px;
  text-align: center;
  color: #8a8a8a;
  font-size: 14px;
}

.linkedin-icon svg {
  width: 32px;
  height: 32px;
}

.linkedin-icon {
  position: absolute;
  bottom: 20px;
  right: 25px;

  opacity: 0.85;
  transition: all 0.25s ease;
}

.linkedin-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}
