/* 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." */

/* Set the background image for the entire page */
body {
    background-image: url('dirtbg.png'); /* Replace 'your-image.jpg' with the path to your image */
    background-size: cover; /* Make the image cover the entire background */
    background-repeat: repeat; /* Prevent the background image from repeating */
    background-position: center; /* Center the background image */
}
