
body {
	font-family: system-ui, sans-serif;
	font-size: 100%;
	line-height: 135%;
	background: #bcd;
	margin: 0; /* bleeds all sides together */
}
main, footer{
	padding: 0 1em; /* adds padding to the footer by 1 em */
}

body.home {
	background: #cdb; /* light green background color*/
}
body.about {
	background: #dbc;  /* light pink back ground color*/
}
body.gallery {
	background: #cbd;   /*ligt purple back ground color*/
}

header {
	background-color: rgba(255,255,255,.4);
	display: flex;
	flex-direction: column; 
	min-height: 50vh; 
	align-items: center;
	justify-content: center;
	position: relative;
}

h1 {
	font-size: 1.25em;
	position: relative;
	top: 0;
	left: 0;
}
h2 {
	font-size: 10vw;
}

.about h1 { font-style: italic; }

a.current {pointer-events: none;}

ul.main-links {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	height: 7em; 
	justify-content: space-between;
	align-items: center;
}

li.main-link {
	width: 75%;
}

.main-links a {
	text-decoration: none;
	background-color: rgba(50,50,50,.3);
	color: #fff;
	display: block;
	height: 1.5em;
	text-align: center;
}


/* media query for wider screens ----------------------------*/
@media (min-width: 600px) {
	
	ul.main-links {
		flex-direction: row;
		justify-content: space-evenly;
		height: 1.35em;
	}
	
	li.main-link {
		width: 20%;
	}	
	.home main {    /* this how you make columns of the paragraphs*/
	display: flex;
	flex direction: space-between;
	}
	.home main section {
	width: 47%:
	
	}
}

@media (min-width: 1200px) {
	h2 {
		font-size: 120px;
	}
}



