/* 🌆 Fondo especial para francés con GIF */
body {
  margin: 0;
  padding: 0;
  background: url("../../img/british.gif") no-repeat center center fixed;
  background-size: cover; /* Hace que el gif ocupe toda la pantalla */
}

/* Si quieres un efecto translúcido para que no distraiga tanto */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3); /* un velo blanco semitransparente */
  z-index: -1;
}
