* {
	margin:  0;
	padding: 0;
	box-sizing: border-box;
	color: white;

}
body {
	background-color: black;
	color: white;
	font-family: -system-ui, sans-serif;
}
.item {
	max-width: 100%;
	/*width: calc(50% - 10px * 2);*/
	margin: 0 auto;
	clear: both	;
	position: relative;
	display: block;
	padding: 0px 20px;
	margin-bottom: 100px;
}
img, video {
	position: relative;
	display: block;
	width: 80%;
	height: auto;
	/*float: left;*/
	clear: both;
	/*max-width: 1280px;*/
	margin: 0 auto;
	box-shadow: ;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(110,110,110,1);
	-moz-box-shadow: 0px 0px 20px 0px rgba(110,110,110,1);
	box-shadow: 0px 0px 20px 0px rgba(110,110,110,1);
}
video {
	max-width: 1080px;
}
img {
	max-width: 1280px;
}
.title {
	font-size: normal;
	font-weight: normal;
	position: fixed;
	display: block;
	top: 20px;
	left: 20px;
	line-height: 1;
	z-index: 999;
}
.images {
	margin-top: 100px;

}
.info {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
}

.caption {
	margin: 0 auto;
	display: block;
	/*float: left;*/
	/*height: 20px;*/
	clear: both;
	font-size: 12px ;
	text-align: center;
	opacity: 0;
	transition: opacity 0.25s;
}
.item:hover .caption {
	opacity: 1;
}
a {
	text-decoration: none;
	cursor: pointer;
}