// Portfolio Page

h2.more-projects {
	color: $base-accent-color;
	text-align: center;

	margin-top: 2em;
	border-bottom: 3px solid;
	margin-bottom: 1em;
	padding: 1em;
}
.portfolio-grid {
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	flex-wrap: wrap;

	line-height: 1.2;

	.portfolio-item {
		text-align: center;
		padding: 1em;
		flex: 1 1 33%;

		img {
			width: 100%; // Adjust based on your needs
			margin-bottom: 1em;
		}

		span {
			font-weight: bold;
			text-transform: uppercase;
		}
	}
}
