.gif-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    /* Optional: define a height for the container to make vertical centering visible */
    /* height: 80vh; */ 
}
body {
  background-color: black;
  color: white; /* Optional: Makes your text readable on black */
}
