	*, *:before, *:after {
    margin: 0;
    padding: 0;
	}

    body {
    	font-family: quicksand;
    	background: #ee9ca7;  /* fallback for old browsers */
		background: -webkit-linear-gradient(to right, #ffdde1, #ee9ca7);  /* Chrome 10-25, Safari 5.1-6 */
		background: linear-gradient(to right, #ffdde1, #ee9ca7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }

/*FULL VIEWPORT*/

	.pageWrapper {
		/*display: grid;*/
		box-sizing: border-box;
		/*grid-template-columns: 100%;*/
		width: 100vw;
	}

/*NAV*/

	.navWRAPPER {
		display: grid;
		grid-template-columns: 100%;
		grid-template-rows: 65vh;
		margin-top: 25vh;
	}

	h1 {
		color: white;
		text-align: center;
		font-size: 5em;
		text-transform: uppercase;
		overflow-x: hidden;
	}

	ul {
		list-style: none;
	}

	a {
		text-decoration: none;
		text-align: center;
		padding: 2em;
		color: white;
		font-size: 2em;
	}
	
	@media only screen and (max-width: 815px){
		h1 {
			font-size: 2em;
		}
	}
