body
{
	text-align: center;
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-image: url("images/background.svg");
	background-size: cover;
}

h1
{
	padding-top: 50px;
	margin: 0px;
	
	text-align: center;
	font-family: 'Gibson', sans-serif, 'Helvetica Neue', HelveticaNeue, Arial, sans-serif;
	font-size: 54px;
	font-weight: bold;
	color: #cced9f;
}

h2
{
	padding-top: 0px;
	margin: 0px;

	display: inline-block;
	font-family: 'Gibson', sans-serif, 'Helvetica Neue', HelveticaNeue, Arial, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #cced9f;
}

.nav_link
{
	padding-left: 10px;
	padding-right: 10px;
	display: inline-block;
	
	text-decoration: none;
	font-family: 'Gibson', sans-serif, 'Helvetica Neue', HelveticaNeue, Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #cced9f;
	
	transition: 0.3s;
}

.gallery
{
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
}

.gallery_link
{
	margin: 10px;
	overflow: hidden;
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	border: 4px solid #cced9f;
}

.img_overlay
{
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.25s;
	background-color: rgb(204,237,159,.5);
}

.img_overlay:hover
{
	opacity: 1;
}

.gallery_image
{
	max-width:100%;
	max-height:100%;
}

.links
{
	text-align: center;
}

.pages
{
	padding-top: 10px;
	padding-bottom: 10px;
	
	text-decoration: none;
	text-align: center;
	font-family: 'Gibson', sans-serif, 'Helvetica Neue', HelveticaNeue, Arial, sans-serif;
	font-size: 14px;
	color: #cced9f;
}

#footer
{
	padding-bottom: 10px;
	//position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-family: 'Gibson', sans-serif, 'Helvetica Neue', HelveticaNeue, Arial, sans-serif;
	font-size: 14px;
	color: #cced9f;
}