

h1 { 
  font-size: 1.5em; 
  margin-top: 75px;
  text-align: center;
}

/* nav bar */

.navigation { 
  width: 100%;
  height: 45px; /* nav bar height */
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-container { 
  width: 900px;
  margin: auto;
}

ul { 
  list-style-type: none; 
  margin: 0;
  padding: 0;
}

/* setup tabs */
li {list-style-type: none; 
  height: 30px; /* tab height */
  margin-top: 15px; /*moves tab down*/
  margin-left: 50px;
  margin-bottom: 0px;
  margin-right: 50px;
  padding: 0px;

  float: left;  
  background-color: white;
}
body{ background-image: url("http://www.hdwallpaperstock.eu/wallpapers/mystical_paradise-1280x720.jpg");

}

/* tab hover */
li:hover {  
  background: rgba(0,0,0,.1); 
  border-top-left-radius: 7px;
}

/* active tab */
.home .nav-home,
.products .nav-products,
.gallery .nav-gallery,
.about .nav-about
{
  background-color: none; 
  color: none;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/*link styles*/
a {
  margin: 0;
  padding-right: 30px;/*tab width*/
  padding-left: 30px;
  padding-bottom: 20px;
  
  text-decoration: none;
  color: white;
}
	a:link{
		text-decoration: none;
		color:#000033;
	}

	a:visited {
			color:blue


}
