/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
} */

.containerVentures {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #212121;
}

.cardVentures {
	width: 200px;
	height: 200px;
	border-radius: 12px;
	background: #212121;
	box-shadow: 10px 10px 15px #191919, -5px -5px 15px #3c3c3c;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.cardVentures:hover {
	transform: scale(1.04);
}

.cardVentures > h3 {
	font-size: 1.5rem;
}
.cardVentures > p {
	font-size: 1.2rem;
}
