/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
      background-image: url('your-gif-file-url.gif'); /* Replace with the actual URL */
      background-size: cover; /* Makes the image cover the entire screen */
      background-repeat: no-repeat; /* Prevents the image from repeating */
      background-position: center; /* Centers the image */
      height: 100vh; /* Sets the background height to 100% of the viewport */
      margin: 0; /* Removes default margin */
    
}