/* 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-color: #000000;
  color: #19762b;
  font-family: Verdana;
}

selector {
  background-image: url('greenstar.jpg');
  background-repeat: no-repeat; /* Prevents the image from tiling */
  background-position: center center; /* Centers horizontally and vertically */
  /* Optional: Adjust background-size if needed */
  background-size: cover; /* or contain, or specific dimensions */
}