@charset "utf-8";
html{
	background-color: #444;
	width: 100%;
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	font-family: Verdana;
	margin: 0;
}
*{
	box-sizing: border-box;
}
h1{
	text-shadow: #aaa 3px 2px 4px;
}
a{
	font-weight: bold;
	color: inherit;
	text-decoration: none;
}

.zoom{
	max-width: 100%;
}

.thumbnails{
	width: 100%;
	margin: 0px;
	padding: 10px 5px;
}

.photo{
	max-width: 100%;
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 5px;
	background: #fff;
	padding: 10px 10px 25px 10px;
	padding: 10px 10px 10px 10px;
	box-shadow: 0px 2px 15px #333;
	color: black;
}

.zoom .photo img{
	max-width: 100%;
	max-height: 30em;
	height: auto;
}
.thumbnails .photo img{
	max-width: 10em;
	max-height: 5em;
}

.zoom .photo .caption{
	font-size: medium;
}
.thumbnails .photo .caption{
	font-size: x-small;
}

.fullscreen{
	width: 100%;
	height: 100%;
}
.fullscreen img{
	width: 100%;
	height: auto;
}
.thumbnails {
	display: flex;
	flex-wrap: wrap;
}
.thumbnails li{
	list-style: none;
}
.thumbnails .photo{
	background-color: #ddd;
}
.thumbnails .photo:hover{
	background-color: #fff;
}
