@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative|Poiret+One|Allerta');
/*
	hsl(276, 8%, 13%)
	hsl(228, 14%, 28%)
	hsl(180, 20%, 43%)
	hsl(132, 26%, 58%)
	hsl(84, 32%, 73%)

	rgb(34, 30, 36)
	rgb(61, 65, 81)
	rgb(88, 132, 132)
	rgb(120, 176, 131)
	rgb(191, 208, 164)

	#221e24 very dark blue
	#3d4151 dark blue
	#588484 blue
	#78b083 green
	#bfd0a4 light green
*/
html{
	height: 100%;
}
body{
    font-family: "Allerta", sans-serif;
	height: 100%;
	text-align: center;
	background-color: #3d4151; /* dark blue */
	margin: 0;
}
.clear{
	width: 100%;
	clear: both;
	margin-bottom: 50px;
}
h1{
    font-family: "Poiret One", cursive;
    font-size: 40px;
	color: #78b083; /* green */
	background-color: #221e24; /* very dark blue */
    letter-spacing: 2px;
    word-spacing: 5px;
	padding: 15px;
	margin-top: 0;
}
.thumb-container{
	display: inline-block;
	background-color: #221e24; /* very dark blue */
	border: 6px solid #221e24; /* very dark blue */
	color: #bfd0a4;  /* very light green */
	margin: 5px;
	padding-bottom: 8px;
	font-size: 18px;
	border-radius: 10px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.thumb-container:hover{
	display: inline-block;
	background-color: #bfd0a4; /* very light green */
	border: 6px solid #bfd0a4; /* very light green */
	color: #221e24; /* very dark blue */
	padding-bottom: 8px;
	font-size: 18px;
	border-radius: 12px;
}
.thumb{
	border-radius: 5px;
	width: 300px;
	height: 300px;
	cursor: pointer;
	overflow: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
footer{
	line-height: 30px;
	background-color: #221e24; /* very dark blue */
	width: 100%;
	color: #bfd0a4;  /* very light green */
	position: fixed;
	bottom: 0;
	font-size: 12px;
}


















