body {
	margin:0;
	background:#000;
	font-family:sans-serif;
	overflow-y: auto;
}
.gallery {
	display: flex;
	flex-direction: column;
	scroll-snap-type: y proximity;
}
.slide {
	flex: 0 0 auto;
	scroll-snap-align: start;
	display: flex;
	justify-content:center;
	align-items:center;
	padding: 5px 0;
}
.slide img {
	max-width:100%;
	max-height:95vh;
	object-fit: contain;
}
.gallery::-webkit-scrollbar {
 display:none;
}