html {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 16px;
	line-height: 24px;
	color: #373737;
}

body {
	background-color:#F4F2EE;
	width: 100%; 
		/*this makes sure body fills screen when below 960. 
		It may not be needed*/
    max-width: 960px;
    margin: 0 auto;
    padding-top: 1em;
    padding-bottom: 1em;
}

/**********navigation bar*/

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04A4aa;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/**********fonts*/

	.headerBig {
		font-size: 2em;
		color: black;
		padding-top: 1em;
		margin:0;
			/*so space between title and subtitle is smaller*/
	}

	.headerSmall {
		font-size: 1em;
	}

	.welcomeText {
		padding-top: 2em;
	}

	.aboutText {
		padding-top: 1em;
	}

	.biggerText {
		font-size: 1.5em;
		padding-top: 1em;
	}

	.formsText {
		padding-top: 1em
	}

	.email {
		color: black;
	}

	.updatedText {
		margin-top: 0em;
		float: right;
	}


/**********images*/

	.pianoPhoto {
		float: right;
		padding-left: 1em;
		max-width: 30%;
		height: auto;
	}

	.acPhoto {
		float: left;
		padding-right: 2em;
		padding-top: 1em;
		padding-bottom: 1em;
		max-width: 30%;
		height: auto;
	}


/* Containers */


	.frame {
		display: grid;
		grid-template-columns: 5% 90% 5%;
		background-color: white;						
	}

	.topnav {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	.header {
		grid-column: 2 / 3;
		grid-row: 2 / 3;	
	}

	.info {
		grid-column: 2 / 3;
		grid-row: 3 /4;
	}

	.contact {
		grid-column: 2 / 3;
		grid-row: 4 / 5;
	}

	.quotes {
		grid-column: 2 / 3;
		grid-row: 5 / 6;
	}

	.footer {
		grid-column: 2 / 3;
		grid-row: 6 / 7;		
	}



/****** BREAK POINTS ********/
/* these properties are all duplicated above.
due to css specificity (later overrides earlier) these 
will be implemented when window size condition is true */

@media (max-width: 450px) {

	.pianoPhoto {
		display:none;
	}
}

@media (max-width: 640px) {

	.pianoPhoto {
		max-width: 40%;
		padding-top: 1em;
	}

	.headerBig {
		line-height: 1;
	}
}

@media (max-width: 960px) {
  	body {
		padding-top: 0em;
    	padding-bottom: 0em;
    		/* css is processed in order top to bottom, so when this is true
    		it overrides previous */
  	}
}	

/*hambuger menu */
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}