
body {  
  
    margin: 0;
    padding: 0;
    overflow: hidden; /* Pour éviter les barres de défilement */
    justify-content: center; /* Center horizontally within the container */
    align-items: center; /* Center vertically within the container */
}

#gif-container {
    width: 100%;
    height: 100vh; /* 90% de la hauteur de la fenêtre */
    overflow: hidden;
}

#gif {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}