/* 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." */
/*h2 {
  border: 4px double red;
}
affects the border/border colour of the header*/
body {
 background-color: black;
 /* background-image: url('banner.png');
  padding: 40px;
  background-repeat: repeat;
  background-position: 300px 0px;
  background-attachment: fixed;
  background-size: 1200px 607px;*/
  color: white;
  font-family: Courier;
}
header {
background-image: url('header.jpg');

/*background-image: url('banner.png');
background-size: 1500px 607px;
alternative header image*/

background-position: center;
  padding: 30px;
  text-align: center;
  font-size: 60px;
  color: white;
  
}
nav {
  float: left;
  width: 30%;
  background: black;
  padding: 20px;
}
article {
  float: center;
  padding: 20px;
  width: 70%;
  background-color: black;
}
a:link {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: orange;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: green;
  background-color: transparent;
  text-decoration: underline;
}