        html, body, h1, ul, li{
			margin: 0;padding: 0;border:0;
}
       body{
			background-color: peachpuff;
		}
		header{
			color: palevioletred;
			height: 250px;
		}
		h1{
			font-size: 150px;
			border: 5px solid black;
			border-radius: 20px;
			text-align: center;
			margin: 30px 5vw
		}
		footer{
			background-color: #2E2E2E;
			color: white; 
			text-align:center
		}
		#container{
			width: 90%;
			margin: auto;
			border: solid 2px black;
			padding: 5px;
			box-shadow: 5px 5px 5px 2px black;
		}
		a{
			text-decoration: none;
			color: black;
			font-size: 30px;
		}
		a:hover{
			color: rosybrown
		}
		ul li{
			display: inline;
			padding: 0px 2%;
		}