.zoom-me{
	position: relative;
	width: 30vw;
	height: auto;
	transition: width .1s ease;
	z-index: 1;
	border: .1vw solid black;
}

.zoom-me:hover{
	width: 31vw;
	cursor: zoom-in;

}


#zoom{
	position: fixed;
	top: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(0,0,0,.2);
	display: none;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	z-index: 100;

}

#zoom img{
	margin: 0;
	padding: 0;
	height: 90vh;
	width: auto;
	border: .1vw solid black;
}

#zoom:hover{
	cursor: zoom-out;
}

#preview video{
	display: none;
	border: .1vw solid black;
}