body {
  background-color: maroon;
  background-image: url("images/bg.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center; 
}

 /* unvisited link */
a:link {
    color: maroon; text-decoration: none;
}

/* visited link */
a:visited {
    color: maroon; text-decoration: none;
}

/* mouse over link */
a:hover {
    color: red; text-decoration: none;
}

/* selected link */
a:active {
    color: red; text-decoration: none;
}
