section {
	padding: 3rem 1.5rem;
}

h2 {
	font-size: 2.5rem;
	font-weight: 300;
}

h3 {
	font-size: 1.35rem;
	font-weight: bold;
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.projects,
.blog-cards {
	display: grid;
	justify-content: center;
	align-items: stretch;
	grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
	gap: 1.5rem;
}

.card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1rem;
	gap: 1.5rem;
	height: 100%;
}

@media only screen and (min-width: 768px) {
	.wrapper {
		gap: 2.25rem;
	}

	.projects,
	.blog-cards {
		grid-template-columns: repeat(auto-fill, minmax(309px, 1fr));
	}

	.buttons {
		flex-direction: row;
	}
}

@media only screen and (max-width: 374px) {
	h3 {
		font-size: 1.25rem;
	}
}
