.card-container{
	display: flex;
	gap: 20px;
	padding: 50px;

}
.card{
	width: 300px;
	height: 500px;
	background: pink;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	border-radius: 20px;
	box-shadow:0px 10px 10px rgba(0,1,0,0,2);
	transition:all 1s;

}
.card:hover{
	transform:translatey(-20px);

}
.project-logo{
	height: 200px;
	width:auto;
}