*{
	font-family: Arial, Helvetica, sans-serif;
}

header, footer {
    padding: 2em;
    color: white;
    background-color: #563e34;
    clear: left;
    text-align: center;
}
header {
	position: fixed;
	Width: 100%;
	align: bottom;
}
.main {
	background-color: #6d4e41;
	color: black;
}
h2 {
	margin-top: 0;
}
footer {
	position: fixed;
	Width: 100%;
	bottom: 0;
}
.footer_margin{
	margin-bottom: 16em;
}
.bottom_margin {
	margin-bottom: 2em;
}
.top_margin {
	margin-top: 14em;
}
.small_image{
	height: 42;
	width: 42;
}
.off_color_1{
	border: 0;
	background-color: #c6ccd2;
}
.off_color_2{
	border: 0;
	background-color: #cda37b;
}
.logo{
	float: right;
	width: 30em;
}
.logo2{
	float: right;
	width: 14em;
	margin-right: 2em;
}


.img__wrap {
  position: relative;
}

.img__img {
	width: 24em;
	height: 24em;
}

.img__description {
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	font-size:2em;
	width:12em;
	top: 0;
	bottom: .15em;
	left: 0em;
	right: 0em;
	background: rgba(255, 255, 255, 0.6);
	color: black;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s, visibility .3s;
}

.img__wrap:hover .img__description {
  visibility: visible;
  opacity: 1;
}