#gallery
{
	margin-top:175px;
	width:800px;
	padding:5px;
	height:400px;
	z-index:7;
	margin-left:45px;
}


*
{

	padding:0px;
}

#thumbs
{

	width:150px;
	height:150px;
	padding:5px;
	float:left; 


}
#thumbs img
{
	width:100%;
	height:100%;

}





.lightbox
{

	visibility:hidden;	
	opacity:0;
	position:fixed;
	top:0;
	left:0;
	background-color:rgba(72,73,74,1);
	height:100%;
	width:100%;
	z-index:1;

}
.lightbox:target
{
	visibility:visible;
	opacity:1;
	z-index:1;
	transition:opacity 1s;
}
#outer
{
	background-color:white;
	width:min-content;
	margin:auto;
	margin-top:30px;
	box-shadow:0px 0px 35px black;
	padding:5px;
	border-radius:8px;
}

#inner
{
	position:relative;
}
#inner img
{
	max-height:480px;
	max-width:800px;
}

#cross
{
	float:right;
}
#next
{
	float:right;
}
.lightbox a
{
	text-decoration:none;
	font-size:20px;
	color:#666666;
}

.lightbox p
{
	text-decoration:none;
	font-size:25px;
	color:#666666;
}

#matter
{
	background-color:red;
	color:white;
	padding:10px;
	font-size:22px;
	position :absolute;
	bottom:0;
	opacity:0;
}

.lightbox #inner:hover #matter
{
	opacity:0.7;
	transition:opacity 2s;
}