body {
	overflow: hidden;
	padding: 0;
	margin: 0;
}
#wrapper {
	width: 100vw;
	height: 100vh;
}
#sizeContainer {
	background-color: #e1ecef;
	width: 100%;


}
#hexa {
	/*transform: scale(2);*/
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.5);
}

#imagesGrid {
	filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
	animation: slideAnimation 300s linear /*infinite*/;
}

@keyframes slideAnimation {
	0% {
		transform: translate(0, -50%);
	}
	100% {
		transform: translate(0, 0);
	}
}
#imagesGrid image:hover {
	cursor: pointer;
	filter: grayscale(100%);
}
#imagesGrid image:active {

  transform: scale(1.5);
   opacity:   0.8;


}
*/
