
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fond + centrage */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/background.png") center center / contain no-repeat fixed;
  background-color: #000; /* couleur de fond si l’image ne couvre pas */
  margin: 0;
}



.gif-button {
  width: 120px;  /* taille souhaitée */
  height: auto; /* garde les proportions */
  cursor: pointer;
  margin-left: 20px;
  margin-top: -100px;
  
}


.arrow-gif {
  position: absolute;
  top: 130px;      /* distance depuis le haut */
  left: 53%;      /* centre horizontalement */
  transform: translateX(-50%); /* centre exact par rapport à la largeur */
  width: 130px;    /* taille du GIF */
  height: auto;
}



.gif-button:hover {
  transform: scale(1.1); /* petit zoom au hover */
}
