@charset "UTF-8";
/* CSS Document */
body {
  background-color: #c2d04e;
}
* {
  box-sizing: border-box;
}



/* Structure */
div#wrapper {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}
div.gallery p {
	text-align: center;
}
div.gallery p a img {
	padding: 0.25em;
}
main,
footer{
	padding: 0.75em;
}



/* Typography */
body {
  font-size: 16px;
  line-height: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin-top: 0.3em;
	margin-bottom: 0.5em;
}
h1 {
	font-size: 2em;
	font-family: 'Montserrat', sans-serif;
}
h2 {
	font-size: 1.75em;
	font-family: 'Montserrat', sans-serif;
}
h3 {
	font-size: 1.5em;
	font-family: Raleway, sans-serif;
	font-style: italic;
	font-weight: normal;
}
h4 {
	font-size: 1em;
}
h5 {
	font-size: 0.9em;
}
h6 {
	font-size: 0.8em;
}
p {
	font-family: 'Raleway', sans-serif;
}

/* Navigation Main */
header#header-page {
	display: flex;
}
header#header-page h1 {
	flex-grow: 1;
/*	border: thin solid red;*/
}

header#header-page nav#nav-main {
	flex-grow: 5;
	color: #0D0000;
/*	border: thin solid red;*/
}
nav#nav-main ol {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
	color: #000000;
}

/* Figure Styles */
figure {
	text-align: center;
}

figure figcaption {
	font-size: 0.8em;
	font-style: italic;
}

/* Footer Main */
footer#footer-main {
	background-color: black;
	display: flex;
	flex-flow: row wrap;
}
footer p{ 
	color: whitesmoke;
}
footer h2{
	color: whitesmoke;
	}
.col-2 {
	flex-grow: 1;
	width: 50%;
}
.col-1 {
	flex-grow: 1;
	width: 25%;
}
#legal {
	flex-grow: 1;
	width: 100%;
}
