.project-cards {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 20px;
	justify-content: center;
}

.project-card {
	background: #333;
	color: white;
	border-radius: 10px;
	overflow: hidden;
	width: 250px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease-in-out;
}

.project-card:hover {
	background-color: #222;
}

.project-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.card-content {
	padding: 15px;
}

.projects .project-card {
	margin-bottom: 20px; /* Space between cards */
}

.languages {
	font-size: 0.9em;
	color: #f3c68c;
	margin-bottom: 5px;
}

.description {
	font-size: 0.85em;
	color: #ddd;
	margin-top: 5px;
}
