   body {
      background-image: url('/web_images/Gray-plain-website-background.jpg');
      /* Optional: control image appearance */
      background-repeat: no-repeat; /* Prevents repeating */
      background-size: cover; /* Covers the entire area */
      color:gold;

      a:link {
      color: white; /* Unvisited link color */
      text-decoration: none; /* Removes the default underline */
      }

      a:visited {
      color: white; /* Visited link color */
      text-decoration: none;
      }

      a:hover {
      color: red; /* Color when mouse is over the link */
      text-decoration: underline; /* Adds underline on hover */
      }

      a:active {
      color: yellow; /* Color when the link is clicked */
      text-decoration: underline;
      }


    }
