*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
  overflow-x: clip;
}

.projet {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.shot {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  scroll-snap-align: start;
}

.close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  z-index: 8;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  mix-blend-mode: difference;
}

.close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.close:hover { transform: rotate(8deg) scale(1.08); }

.projet-name {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 8;
  margin: 0;
  font-family: "Saira Extra Condensed", "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 7vw, 48px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
}
