	 /* http://meyerweb.com/eric/tools/css/reset/ 
		   v2.0 | 20110126
		   License: none (public domain)
		*/

		html, body, div, span, applet, object, iframe,
		h1, h2, h3, h4, h5, h6, p, blockquote, pre,
		a, abbr, acronym, address, big, cite, code,
		del, dfn, em, img, ins, kbd, q, s, samp,
		small, strike, strong, sub, sup, tt, var,
		b, u, i, center,
		dl, dt, dd, ol, ul, li,
		fieldset, form, label, legend,
		table, caption, tbody, tfoot, thead, tr, th, td,
		article, aside, canvas, details, embed, 
		figure, figcaption, footer, header, hgroup, 
		menu, nav, output, ruby, section, summary,
		time, mark, audio, video {
			margin: 0;
			padding: 0;
			border: 0;
			font-size: 100%;
			font: inherit;
			vertical-align: baseline;
		}
		/* HTML5 display-role reset for older browsers */
		article, aside, details, figcaption, figure, 
		footer, header, hgroup, menu, nav, section {
			display: block;
		}
		body {
			line-height: 1;
		}
		ol, ul {
			list-style: none;
		}
		blockquote, q {
			quotes: none;
		}
		blockquote:before, blockquote:after,
		q:before, q:after {
			content: '';
			content: none;
		}
		table {
			border-collapse: collapse;
			border-spacing: 0;
		}

       /*don't touch the reset above*/


		/* Default Styles Below*/



		/*Default styles*/

body {
			font-size: 20px;
			font-family: 'Alice', serif;
		}

		#wrapper {
			 display: flex;
  			min-height: 100vh;
  			width: auto;
  			  flex-direction: column;
  			  flex-direction: column;
 			justify-content: space-between;
 			background-color: #337AC1;
			width: auto;		
		}

		#grid-container {
			display: grid;
			grid-template-columns: 3fr 1fr;
		}

		header {
			padding: 2%;
			background-color: #337AC1;
			display: grid;
			grid-template-columns: 1fr 1fr;
		}

		nav ul {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-gap: 2px;
		}

	    nav li a  {
	       display: block;
	       text-align: center;
	       font-family: 'Alice', serif;
	       color: white;
	       text-decoration: none;
	       font-size: 25px;
	    }


	    #main {
	    	height: auto;
	    	width: auto;
	    	padding: 5%;
	    	background-color: #92C0DD;
	    }


	    footer {
	      	padding: 1%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    	color: white;
	    }

	    h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;
	    }

		.increase {
			font-size: 3.5em;
			border-bottom: 2px solid black;
		}


		p {
			font-size: 22px;
			width: 80%;
			text-align: left;
			color: black;
			font-family: 'Alice', serif;
			line-height: 1.5em;
		}


		#bridge {
			background-repeat: no-repeat;
			padding: 300px;
			background-image: url('img/bridge.jpg');
			background-attachment: fixed;
		}

		#brayden{
			width: auto;
			height: auto;
			border-radius: 50%;
			position: relative;
			background-repeat: no-repeat;
  
		}

		.button {
  			background-color: #337AC1; 
  			border: none;
  			text-align: left;
  			border-radius: 50%;
 			color: white;
  			padding: 20px 35px;	
  			text-decoration: none;
 		 	display: inline-block;
  			font-size: 17px;
  			font-family: 'Alice', serif;
			}

/* mouse over link */
		a:hover {
 		 color: #92C0DD;
	}


/*mobile styles*/

@media only screen and (max-width: 600px) {



		#brayden{
			width: 100%;
			height: auto;
			overflow: hidden;
			background-repeat: no-repeat;
			margin-top: 100px;
		}



		p {
			font-size: 22px;
			width: 90%;
			text-align: left;
			color: black;
			font-family: 'Alice', serif;
			line-height: 1.5em;
		}


nav li a  {
	       display: block;
	       text-align: center;
	       font-family: 'Alice', serif;
	       color: white;
	       text-decoration: none;
	       font-size: 19px;
	    }
  
  #main {
	    	height: auto;
	    	width: auto;
	    	padding: 5%;
	    	margin-bottom: 20px;
	    	background-color: #92C0DD;
	    }

	    #bridge {
			background-repeat: no-repeat;
			padding: 200px;
			background-image: url('img/bridge.jpg');
			background-attachment: fixed;
		}

}