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

    body {
    	font-family: quicksand;
    	background: #A1FFCE;  
		background: -webkit-linear-gradient(to right, #FAFFD1, #A1FFCE);
		background: linear-gradient(to right, #FAFFD1, #A1FFCE);
    	/*background: #C9FFBF;
		background: -webkit-linear-gradient(to right, #FFAFBD, #C9FFBF);
		background: linear-gradient(to right, #FFAFBD, #C9FFBF);*/
	}

/*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: 35vh;
	}

	h1 {
		color: white;
		text-align: center;
		text-transform: uppercase;
		overflow-x: hidden;
		padding-bottom: 1em;
	}

	ul {
		list-style: none;
	}

	a {
		text-decoration: none;
		text-align: center;
		padding: 2em;
		color: white;
		font-size: 2em;
	}

/*MUSIC*/

	audio {
		align-self: center;
		width: 92.5vw;
		margin-left: 3.75vw;
		margin-right: 3.75vw;
		border-radius: 1em;
	}

/*MOBILE*/

	@media only screen and (max-width: 530px){
		h1 {
			font-size: 2em;
		}
	}

/*TABLET*/

	@media only screen and (min-width: 530px) and (max-width: 845px){
		h1 {
			font-size: 3em;
		}
	}

/*LANDSCAPE	*/

	@media only screen and (min-width: 845px) and (orientation: landscape){
		h1 {
			font-size: 2.5em;
		}
	}

/*BIG SCREENS*/

	@media only screen and (min-width: 845px){
		h1 {
			font-size: 5em;
		}
	}
