/* =============================================================================
   My CSS
   ========================================================================== */

#background {

  position: fixed;
  background-image: url('../images/bg.jpg'); /* Chemin vers ton image */
  background-size: cover; /* Pour couvrir tout l'écran */
  background-position: center; /* Pour centrer l'image */
  background-repeat: no-repeat; /* Pour éviter la répétition de l'image */

}

/* Responsive */
@media (max-width: 768px) {
  #background {
    background-image: url('../images/bg-mobile.jpg'); /* Image différente pour les petits écrans */
  }
}