@charset "utf-8";
/* CSS Document */

#navbar {
	background-color: transparent; 
	position: fixed; 
	top: 0; 
	width: 100%; 
	transition: top 0.3s; /*Nav Part 2. the animation*/
}

	
	#navbar a {
		margin-left: 3vmin;
		margin-top: 3vmin;
		float: left;
		display: block;
		color: white;
		text-align: center;
		padding: 0;
		text-decoration: none;
	}

		#navbar a:hover {
			background-color: rgba( 255, 255, 255, 0.00 );
			color: black;
		}
