.contitem{
	margin: auto;
	/*height: 300px;
	width:1100px;*/	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.item{
 	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc;
	width: 250px;
	height: 150px;
	padding: 10px;
	margin: 5px;
	border-radius: 10px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	transition: all .25s;
	text-align: center;
	
}

#item{
	font-size: 20px;
	text-decoration: none;
	cursor: pointer;
	padding: 50px;
	cursor: pointer;
	font-weight: bold;	
}

.item:hover{
	background: #9EF1EB;
	/*transform: translateY(-5px);*/
	box-shadow:  0 12px 16px rgba(0, 0, 0, 0.2);
}
.item:active{
	font-weight: bold;
}
