body {
	background-attachment: fixed;
}

H2 { text-align: center; 
	font-size: 30px;
	background: -webkit-gradient(linear, left top, left bottom, from(#FF0000), to(#FFB900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	}
	
	nav ul{
			list-style-type: none;
			font-family: "Comic Sans MS"
	}
	nav li{
		float: left;
	}
	
	nav ul::after{
		content: "";
		display: table;
		clear: both;
	}
	
	nav li{
		display: inline;
		width: 25%;
		text-align: center;
	}
	
	nav{
		width: 125%;
		margin: 0 auto;
	}
	
	nav a{
		display: block;
		text-decoration: none;
		color: yellow;
		border-bottom: 10px;
		padding: 10px 0px;
	}
	
	nav a:hover{
		color: orange;
		border-bottom: 2px solid gold;
	}
